]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statbr95.cpp
mention wx[Flex]GridSizer too
[wxWidgets.git] / src / msw / statbr95.cpp
index df3eacee72badff1c160c47284a32273ede4d1e2..6fc87c0d1c166192372676f8435b77a06d12b598 100644 (file)
@@ -309,6 +309,16 @@ void wxStatusBar95::DoMoveWindow(int x, int y, int width, int height)
 
     // adjust fields widths to the new size
     SetFieldsWidth();
 
     // adjust fields widths to the new size
     SetFieldsWidth();
+
+    // we have to trigger wxSizeEvent if there are children window in status 
+    // bar because GetFieldRect returned incorrect (not updated) values up to
+    // here, which almost certainly resulted in incorrectly redrawn statusbar
+    if ( m_children.GetCount() > 0 )
+    {
+        wxSizeEvent event(GetClientSize(), m_windowId);
+        event.SetEventObject(this);
+        GetEventHandler()->ProcessEvent(event);
+    }
 }
 
 #endif // __WIN95__ && wxUSE_NATIVE_STATUSBAR
 }
 
 #endif // __WIN95__ && wxUSE_NATIVE_STATUSBAR