From c9698388a2d5833699ad3d8f698e0be151e6837b Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 3 Apr 2005 13:41:48 +0000 Subject: [PATCH] invalidating vis regions upon tlw resize as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/toplevel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mac/carbon/toplevel.cpp b/src/mac/carbon/toplevel.cpp index b8211339a2..d96295e606 100644 --- a/src/mac/carbon/toplevel.cpp +++ b/src/mac/carbon/toplevel.cpp @@ -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 )) ; } -- 2.47.2