trying to avoid unneccessary redraws by not invalidating areas for windows that are...
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 4 Jul 2003 19:59:34 +0000 (19:59 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 4 Jul 2003 19:59:34 +0000 (19:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/window.cpp
src/mac/window.cpp

index 9587ffa3a7f9f7baca1c066f4bf2a33e29b8a930..aa3e705ea1ace34751e772d7357df3edb400747c 100644 (file)
@@ -886,7 +886,10 @@ void wxWindowMac::Refresh(bool eraseBack, const wxRect *rect)
     if ( MacGetTopLevelWindow() == NULL )
         return ;
 
-    wxPoint client = GetClientAreaOrigin();
+    if ( !MacIsReallyShown() )
+       return ;
+     wxPoint client = GetClientAreaOrigin();
     int x1 = -client.x;
     int y1 = -client.y;
     int x2 = m_width - client.x;
index 9587ffa3a7f9f7baca1c066f4bf2a33e29b8a930..aa3e705ea1ace34751e772d7357df3edb400747c 100644 (file)
@@ -886,7 +886,10 @@ void wxWindowMac::Refresh(bool eraseBack, const wxRect *rect)
     if ( MacGetTopLevelWindow() == NULL )
         return ;
 
-    wxPoint client = GetClientAreaOrigin();
+    if ( !MacIsReallyShown() )
+       return ;
+     wxPoint client = GetClientAreaOrigin();
     int x1 = -client.x;
     int y1 = -client.y;
     int x2 = m_width - client.x;