diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-01-19 19:12:51 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-01-19 19:12:51 +0000 |
| commit | 6d87533f19fac2a31a8a54b7b7491d88843cbc79 (patch) | |
| tree | 9728f63c4288ce6d2c218dd26f044a2bb1a9854e /src/Fl_Choice.cxx | |
| parent | 576f02c0637cdbb641be4b1073b44c64a2c02a94 (diff) | |
Fixes from Bill for menu scrolling errors.
git-svn-id: file:///fltk/svn/fltk/trunk@233 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Choice.cxx')
| -rw-r--r-- | src/Fl_Choice.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Fl_Choice.cxx b/src/Fl_Choice.cxx index fb0d5baeb..22d1ca447 100644 --- a/src/Fl_Choice.cxx +++ b/src/Fl_Choice.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Choice.cxx,v 1.6 1999/01/07 19:17:18 mike Exp $" +// "$Id: Fl_Choice.cxx,v 1.7 1999/01/19 19:12:51 mike Exp $" // // Choice widget for the Fast Light Tool Kit (FLTK). // @@ -66,6 +66,7 @@ int Fl_Choice::handle(int e) { const Fl_Menu_Item* v; switch (e) { case FL_PUSH: + Fl::event_is_click(0); J1: v = menu()->pulldown(x(), y(), w(), h(), mvalue(), this); if (!v || v->submenu()) return 1; @@ -85,5 +86,5 @@ int Fl_Choice::handle(int e) { } // -// End of "$Id: Fl_Choice.cxx,v 1.6 1999/01/07 19:17:18 mike Exp $". +// End of "$Id: Fl_Choice.cxx,v 1.7 1999/01/19 19:12:51 mike Exp $". // |
