]> git.saurik.com Git - wxWidgets.git/commitdiff
Use bounds rect instead of frame rect when positioning subviews
authorDavid Elliott <dfe@tgwbd.org>
Tue, 19 Aug 2003 04:10:47 +0000 (04:10 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Tue, 19 Aug 2003 04:10:47 +0000 (04:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/window.mm

index 964d65e8da7ee9234697faa8e91b22ed057bc424..7eae1635ab09cf89e1d41f740a17ada9ff113410 100644 (file)
@@ -502,7 +502,7 @@ void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
     NSView *nsview = GetNSViewForSuperview();
     NSView *superview = [nsview superview];
     wxCHECK_RET(superview,"NSView does not have a superview");
-    NSRect parentRect = [superview frame];
+    NSRect parentRect = [superview bounds];
 
     NSRect cocoaRect = NSMakeRect(x,parentRect.size.height-(y+height),width,height);
     [nsview setFrame: cocoaRect];
@@ -515,7 +515,7 @@ void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size)
     NSView *nsview = GetNSViewForSuperview();
     NSView *superview = [nsview superview];
     wxCHECK_RET(superview,"NSView does not have a superview");
-    NSRect parentRect = [superview frame];
+    NSRect parentRect = [superview bounds];
     NSRect frameRect = [nsview frame];
     if(size.x!=-1)
         frameRect.size.width = size.x;
@@ -548,7 +548,7 @@ void wxWindow::DoGetPosition(int *x, int *y) const
     NSView *nsview = GetNSViewForSuperview();
     NSView *superview = [nsview superview];
     wxCHECK_RET(superview,"NSView does not have a superview");
-    NSRect parentRect = [superview frame];
+    NSRect parentRect = [superview bounds];
 
     NSRect cocoaRect = [nsview frame];
     if(x)