From 5a190101905d605c9ebc7ba7ebadcf415c0d58f2 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 2 Nov 2005 09:51:27 +0000 Subject: STR #1051: fl_wait() would only flush damaged window areas if there were any messages pending. Since FLTK does redraws even if there is no WM_PAINT pending, this was not working all the time. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4617 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_win32.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index 4eb2a1262..215e2861e 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -288,7 +288,6 @@ int fl_wait(double time_to_wait) { DispatchMessage(&fl_msg); have_message = PeekMessage(&fl_msg, NULL, 0, 0, PM_REMOVE); } - Fl::flush(); } // idle processing @@ -300,6 +299,7 @@ int fl_wait(double time_to_wait) { } run_checks(); + Fl::flush(); // This should return 0 if only timer events were handled: return 1; -- cgit v1.2.3