From 5856534c8683010260628adc346600b796cffb02 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 3 Jun 2013 17:54:31 +0000 Subject: [PATCH] avoiding reentrancy problems and congestion git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/carbon/statbrma.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/osx/carbon/statbrma.cpp b/src/osx/carbon/statbrma.cpp index a23e9180ac..3a89df132d 100644 --- a/src/osx/carbon/statbrma.cpp +++ b/src/osx/carbon/statbrma.cpp @@ -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)) -- 2.45.2