]> git.saurik.com Git - wxWidgets.git/commitdiff
invalidating vis regions upon tlw resize as well
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 3 Apr 2005 13:41:48 +0000 (13:41 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 3 Apr 2005 13:41:48 +0000 (13:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/toplevel.cpp

index b8211339a2a826ca66a0c8eea198a56759c22dbd..d96295e606ed115cb9af1226f7db7775d41eb5d2 100644 (file)
@@ -1382,6 +1382,7 @@ void wxTopLevelWindowMac::MacGetContentAreaInset( int &left , int &top , int &ri
 
 void wxTopLevelWindowMac::DoMoveWindow(int x, int y, int width, int height)
 {
+    m_cachedClippedRectValid = false ;
     Rect bounds = { y , x , y + height , x + width } ;
     verify_noerr(SetWindowBounds( (WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
 }