From: David Elliott Date: Mon, 18 Aug 2003 19:15:53 +0000 (+0000) Subject: DoMoveWindow: setNeedsDisplay:YES for the superview X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b915b80565c3a93102e15bc4dba979eb1d6f794a?ds=inline DoMoveWindow: setNeedsDisplay:YES for the superview git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/window.mm b/src/cocoa/window.mm index 017b2de47e..0aa235830f 100644 --- a/src/cocoa/window.mm +++ b/src/cocoa/window.mm @@ -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)