summaryrefslogtreecommitdiff
path: root/src/Fl_Menu.cxx
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>1999-01-29 07:52:21 +0000
committerBill Spitzak <spitzak@gmail.com>1999-01-29 07:52:21 +0000
commitef50e095e79e0ecd7077633bf96d13f6ba8f737e (patch)
treea9e3bccb1d650722739e2b130368f94b4c4a416b /src/Fl_Menu.cxx
parent41195fbba6680eea46cdd0629aa35b3689f53014 (diff)
Fixed buttons in the menubar
git-svn-id: file:///fltk/svn/fltk/trunk@255 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Menu.cxx')
-rw-r--r--src/Fl_Menu.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Fl_Menu.cxx b/src/Fl_Menu.cxx
index b96cd57a7..58048946c 100644
--- a/src/Fl_Menu.cxx
+++ b/src/Fl_Menu.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Menu.cxx,v 1.14 1999/01/24 15:27:35 mike Exp $"
+// "$Id: Fl_Menu.cxx,v 1.15 1999/01/29 07:52:21 bill Exp $"
//
// Menu code for the Fast Light Tool Kit (FLTK).
//
@@ -526,7 +526,9 @@ int menuwindow::handle(int e) {
if (p.current_item && !p.current_item->activevisible()) return 1;
// Mouse must either be held down/dragged some, or this must be
// the second click (not the one that popped up the menu):
- if (!Fl::event_is_click() || p.state == PUSH_STATE) p.state = DONE_STATE;
+ if (!Fl::event_is_click() || p.state == PUSH_STATE ||
+ p.menubar && p.current_item && !p.current_item->submenu() // button
+ ) p.state = DONE_STATE;
return 1;
}
return Fl_Window::handle(e);
@@ -708,5 +710,5 @@ const Fl_Menu_Item* Fl_Menu_Item::test_shortcut() const {
}
//
-// End of "$Id: Fl_Menu.cxx,v 1.14 1999/01/24 15:27:35 mike Exp $".
+// End of "$Id: Fl_Menu.cxx,v 1.15 1999/01/29 07:52:21 bill Exp $".
//