]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/stattext.cpp
mac fixes part II
[wxWidgets.git] / src / mac / stattext.cpp
index 5ce406a67a892724b25819345ffd63ab2fc85a34..a99f6c4e69f80a1bf7bae1e728add2c3d8252700 100644 (file)
@@ -61,7 +61,7 @@ void wxStaticText::OnDraw( wxDC &dc )
         return;
 
     PrepareDC(dc);
-    dc.Clear() ;
+//    dc.Clear() ; this eventually draws in the wrong background colour (appearance panels)
     
     int x = 0 ;
     int y = 0 ;
@@ -259,7 +259,9 @@ void wxStaticText::SetLabel(const wxString& st )
        m_label = st ;
        if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
                SetSizeOrDefault() ;
-       
-    wxClientDC dc(this);
-    OnDraw( dc ) ;
+
+       Refresh() ;     
+       MacUpdateImmediately() ;
+//    wxClientDC dc(this);
+//    OnDraw( dc ) ;
 }