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 $". // diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index ae6802edf..5bb70fbe5 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_win32.cxx,v 1.25 1999/01/24 15:30:32 mike Exp $" +// "$Id: Fl_win32.cxx,v 1.26 1999/01/29 07:52:21 bill Exp $" // // WIN32-specific code for the Fast Light Tool Kit (FLTK). // @@ -641,7 +641,7 @@ Fl_X* Fl_X::make(Fl_Window* w) { case 2: style |= WS_THICKFRAME | WS_MAXIMIZEBOX | WS_CAPTION ; break; } if (by+bt) { - if (!w->modal()) style |= WS_SYSMENU | WS_MINIMIZEBOX; + if (!w->non_modal()) style |= WS_SYSMENU | WS_MINIMIZEBOX; wp += 2*bx; hp += 2*by+bt; } @@ -862,5 +862,5 @@ void Fl_Window::make_current() { } // -// End of "$Id: Fl_win32.cxx,v 1.25 1999/01/24 15:30:32 mike Exp $". +// End of "$Id: Fl_win32.cxx,v 1.26 1999/01/29 07:52:21 bill Exp $". //