]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/evtloop.cpp
Applied patch [ 740071 ] Make tiff errors/warnings use wxLog functions
[wxWidgets.git] / src / mgl / evtloop.cpp
index ddf15a25b3b6e38767c31807065d194fcff42cb0..fe0b328eaebb28f8a898c57778e58718322e65b9 100644 (file)
@@ -3,8 +3,8 @@
 // Purpose:     implements wxEventLoop for MGL
 // Author:      Vaclav Slavik
 // RCS-ID:      $Id$
-// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
-// License:     wxWindows license
+// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
+// License:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ----------------------------------------------------------------------------
@@ -178,6 +178,11 @@ void wxEventLoop::Exit(int rc)
 
 bool wxEventLoop::Pending() const
 {
+    // update the display here, so that wxYield refreshes display and 
+    // changes take effect immediately, not after emptying events queue:
+    MGL_wmUpdateDC(g_winMng);
+    
+    // is there an event in the queue?
     event_t evt;
     return EVT_peekNext(&evt, EVT_EVERYEVT);
 }