This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Don't die if user picks a popup menu item with no callback set (e.g. a submenu node).
tags/non-daw-v1.1.0
Jonathan Moore Liles
15 years ago
parent
74df856ebe
commit
178ce417ee
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
FL/menu_popup.C
+ 2
- 1
FL/menu_popup.C
View File
@@ -30,7 +30,8 @@ menu_popup ( Fl_Menu_ *m )
if ( r )
{
m->value( r );
r->do_callback( static_cast<Fl_Widget*>(m) );
if ( r->callback() )
r->do_callback( static_cast<Fl_Widget*>(m) );
return true;
}
Write
Preview
Loading…
Cancel
Save