]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/dcscreen.cpp
Updates for Y positioning
[wxWidgets.git] / src / mgl / dcscreen.cpp
index 6152e58c5419ec5a07cca3a23e783c49a031a9a5..575d656dbad49980730c069978b11696e1c887e1 100644 (file)
@@ -25,4 +25,12 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxDC)
 wxScreenDC::wxScreenDC() : wxDC()
 {
     SetMGLDC(g_displayDC, FALSE /* no ownership */);
+    
+    // VS: we have to hide the mouse, otherwise rendering artifacts may occur
+    MS_obscure();
+}
+
+wxScreenDC::~wxScreenDC()
+{
+    MS_show();
 }