]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
Added ability to switch off more components of the size page UI
[wxWidgets.git] / src / msw / window.cpp
index 4b07cbdf1d901bcabc5988c1ea0a5c488ad60d96..041edce030cf5d17a448f141987f5d354d31e5e3 100644 (file)
@@ -4959,7 +4959,11 @@ wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC, wxWindowMSW *child)
 
         ::MapWindowPoints(NULL, GetHwnd(), (POINT *)&rc, 1);
 
-        if ( !::SetBrushOrgEx((HDC)hDC, -rc.left, -rc.top, NULL) )
+        int x = rc.left,
+            y = rc.top;
+        MSWAdjustBrushOrg(&x, &y);
+
+        if ( !::SetBrushOrgEx((HDC)hDC, -x, -y, NULL) )
         {
             wxLogLastError(wxT("SetBrushOrgEx(bg brush)"));
         }