diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-12-31 02:56:18 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-12-31 02:56:18 +0000 |
| commit | c0cdc569268ac94bc8ae000ab93b5f98515760d3 (patch) | |
| tree | ed58306a744d524078f57aed8f28fb91172129d0 | |
| parent | df57aa4d2f324167f0772bb3611e9e21e2fc894a (diff) | |
Fixed async selection code - wasn't calling TranslateMessage...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@967 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_win32.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index 973e89e1a..0858a152e 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_win32.cxx,v 1.33.2.19 1999/12/30 17:37:04 mike Exp $" +// "$Id: Fl_win32.cxx,v 1.33.2.20 1999/12/31 02:56:18 mike Exp $" // // WIN32-specific code for the Fast Light Tool Kit (FLTK). // @@ -246,6 +246,7 @@ double fl_wait(int timeout_flag, double time) { } } else { // Some other message... + TranslateMessage(&fl_msg); DispatchMessage(&fl_msg); } #else @@ -953,5 +954,5 @@ void Fl_Window::make_current() { } // -// End of "$Id: Fl_win32.cxx,v 1.33.2.19 1999/12/30 17:37:04 mike Exp $". +// End of "$Id: Fl_win32.cxx,v 1.33.2.20 1999/12/31 02:56:18 mike Exp $". // |
