diff --git a/src/osx/carbon/renderer.cpp b/src/osx/carbon/renderer.cpp index 38642f8a86..659b070891 100644 --- a/src/osx/carbon/renderer.cpp +++ b/src/osx/carbon/renderer.cpp @@ -24,6 +24,7 @@ #include "wx/bitmap.h" #include "wx/settings.h" #include "wx/dcclient.h" + #include "wx/dcmemory.h" #include "wx/toplevel.h" #endif @@ -37,11 +38,13 @@ #include "wx/mstream.h" #endif // wxHAS_DRAW_TITLE_BAR_BITMAP + // check if we're currently in a paint event inline bool wxInPaintEvent(wxWindow* win, wxDC& dc) { - wxUnusedVar(dc); - return ( win->MacGetCGContextRef() != NULL ); + return win->MacGetCGContextRef() != NULL || + // wxMemoryDC's also have a valid CGContext. + dc.IsKindOf( CLASSINFO(wxMemoryDC) ); } @@ -809,4 +812,4 @@ void wxRendererMac::DrawTitleBarBitmap(wxWindow *win, #endif // wxHAS_DRAW_TITLE_BAR_BITMAP -#endif \ No newline at end of file +#endif