]> git.saurik.com Git - wxWidgets.git/commitdiff
DoMoveWindow: setNeedsDisplay:YES for the superview
authorDavid Elliott <dfe@tgwbd.org>
Mon, 18 Aug 2003 19:15:53 +0000 (19:15 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 18 Aug 2003 19:15:53 +0000 (19:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/window.mm

index 017b2de47e04c81f85fce7759996e09091a13302..0aa235830ff5cd042fcfb39c9a9695558ff4d454 100644 (file)
@@ -506,6 +506,8 @@ void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
 
     NSRect cocoaRect = NSMakeRect(x,parentRect.size.height-(y+height),width,height);
     [nsview setFrame: cocoaRect];
+    // Be sure to redraw the parent to reflect the changed position
+    [superview setNeedsDisplay:YES];
 }
 
 void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size)