From: Robin Dunn Date: Fri, 12 Apr 2013 23:45:15 +0000 (+0000) Subject: Ensure there is valid context for DrawRectangle X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/07aaf32633ecf18ec3edfbb41793a112914792d0 Ensure there is valid context for DrawRectangle git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/carbon/graphics.cpp b/src/osx/carbon/graphics.cpp index b1226cccc8..c42ffba7f7 100644 --- a/src/osx/carbon/graphics.cpp +++ b/src/osx/carbon/graphics.cpp @@ -2708,6 +2708,9 @@ void * wxMacCoreGraphicsContext::GetNativeContext() void wxMacCoreGraphicsContext::DrawRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) { + if (!EnsureIsValid()) + return; + if (m_composition == wxCOMPOSITION_DEST) return;