]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statbox.cpp
Fix bug in ribbon bar label size calculation.
[wxWidgets.git] / src / msw / statbox.cpp
index 6272f6396e9df19ffb750a1a50285468e0b45d53..d3e6b3cd3aec42bb27fb1a51281b36d6cda7e3da 100644 (file)
@@ -364,6 +364,7 @@ void wxStaticBox::PaintForeground(wxDC& dc, const RECT& rc)
     wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
     MSWDefWindowProc(WM_PAINT, (WPARAM)GetHdcOf(*impl), 0);
 
+#if wxUSE_UXTHEME
     // when using XP themes, neither setting the text colour nor transparent
     // background mode doesn't change anything: the static box def window proc
     // still draws the label in its own colours, so we need to redraw the text
@@ -485,6 +486,7 @@ void wxStaticBox::PaintForeground(wxDC& dc, const RECT& rc)
                        drawTextFlags | DT_RTLREADING);
         }
     }
+#endif // wxUSE_UXTHEME
 }
 
 void wxStaticBox::OnPaint(wxPaintEvent& WXUNUSED(event))