aboutsummaryrefslogtreecommitdiff
path: root/AppKit/GTMUILocalizerAndLayoutTweaker.m
diff options
context:
space:
mode:
Diffstat (limited to 'AppKit/GTMUILocalizerAndLayoutTweaker.m')
-rw-r--r--AppKit/GTMUILocalizerAndLayoutTweaker.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/AppKit/GTMUILocalizerAndLayoutTweaker.m b/AppKit/GTMUILocalizerAndLayoutTweaker.m
index a24eef1..4518ef1 100644
--- a/AppKit/GTMUILocalizerAndLayoutTweaker.m
+++ b/AppKit/GTMUILocalizerAndLayoutTweaker.m
@@ -350,9 +350,10 @@ static BOOL IsRightAnchored(NSView *view);
[contentView setAutoresizesSubviews:NO];
}
- NSRect rect = [window frame];
+ NSRect rect = [contentView convertRect:[window frame] fromView:nil];
rect.size.width += delta.width;
rect.size.height += delta.height;
+ rect = [contentView convertRect:rect toView:nil];
[window setFrame:rect display:NO];
// For some reason the content view is resizing, but some times not adjusting
// its origin, so correct it manually.