diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-10-10 19:39:49 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-10-10 19:39:49 +0000 |
| commit | 8b7b26b7bf7fb43fee1342c18fff49c3b753fd95 (patch) | |
| tree | 4021879fa717ef3419e594a276a5548d16e55ee5 /src/Fl_Input.cxx | |
| parent | 77c3efad19f1fd47a26cfaec43d47667ec2661d9 (diff) | |
Take focus when the user presses a shortcut.
Call the callback when the user clicks or drags in a readonly input
field.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2664 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Input.cxx')
| -rw-r--r-- | src/Fl_Input.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx index e65edbd50..236a4cc71 100644 --- a/src/Fl_Input.cxx +++ b/src/Fl_Input.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Input.cxx,v 1.10.2.15.2.13 2002/08/09 01:09:49 easysw Exp $" +// "$Id: Fl_Input.cxx,v 1.10.2.15.2.14 2002/10/10 19:39:49 easysw Exp $" // // Input widget for the Fast Light Tool Kit (FLTK). // @@ -337,6 +337,9 @@ int Fl_Input::handle(int event) { position(drag_start, drag_start); drag_start = -1; } + // For output widgets, do the callback so the app knows the user + // did something with the mouse... + if (readonly()) do_callback(); return 1; case FL_DND_ENTER: @@ -393,5 +396,5 @@ Fl_Input::Fl_Input(int X, int Y, int W, int H, const char *l) } // -// End of "$Id: Fl_Input.cxx,v 1.10.2.15.2.13 2002/08/09 01:09:49 easysw Exp $". +// End of "$Id: Fl_Input.cxx,v 1.10.2.15.2.14 2002/10/10 19:39:49 easysw Exp $". // |
