]> git.saurik.com Git - wxWidgets.git/commitdiff
avoiding reentrancy problems and congestion
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Jun 2013 17:54:31 +0000 (17:54 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Jun 2013 17:54:31 +0000 (17:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/statbrma.cpp

index a23e9180ac3b4412bf8ac3dd4decca7685ab3aad..3a89df132d0162c77f51e5b06f65163eb4eaaee5 100644 (file)
@@ -114,7 +114,11 @@ void wxStatusBarMac::DoUpdateStatusText(int number)
     rect.height = h ;
 
     Refresh( true, &rect );
+    // we should have to force the update here
+    // TODO Remove if no regressions occur
+#if 0
     Update();
+#endif
 }
 
 void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event))