From 9290da74b7eed36704fceaafb7d97a5ccbced96f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 6 Feb 2005 01:26:56 +0000 Subject: [PATCH] Fl_Choice now allows click selection like Fl_Menu_Button and Fl_Menubar (STR #706) src/Fl_Choice.cxx: - Fl_Chocie::handle(): remove call to event_is_click(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4031 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Choice.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Fl_Choice.cxx b/src/Fl_Choice.cxx index 4935ad025..a3589dd9d 100644 --- a/src/Fl_Choice.cxx +++ b/src/Fl_Choice.cxx @@ -131,7 +131,6 @@ int Fl_Choice::handle(int e) { (Fl::event_state() & (FL_SHIFT | FL_CTRL | FL_ALT | FL_META))) return 0; case FL_PUSH: if (Fl::visible_focus()) Fl::focus(this); - Fl::event_is_click(0); J1: v = menu()->pulldown(x(), y(), w(), h(), mvalue(), this); if (!v || v->submenu()) return 1;