summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_quartz.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/vo_quartz.c b/libvo/vo_quartz.c
index 82b0a58ded..82f87ffa56 100644
--- a/libvo/vo_quartz.c
+++ b/libvo/vo_quartz.c
@@ -349,7 +349,7 @@ static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventR
vo_fs = (!(vo_fs)); window_fullscreen();
}
- SizeWindow(theWindow, (d_width/2), (d_height/2)+border, 1);
+ SizeWindow(theWindow, (d_width/2), ((d_width/movie_aspect)/2)+border, 1);
RepositionWindow(theWindow, NULL, kWindowCascadeOnMainScreen);
window_resized();
break;
@@ -360,7 +360,7 @@ static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventR
vo_fs = (!(vo_fs)); window_fullscreen();
}
- SizeWindow(theWindow, d_width, d_height+border, 1);
+ SizeWindow(theWindow, d_width, (d_width/movie_aspect)+border, 1);
RepositionWindow(theWindow, NULL, kWindowCascadeOnMainScreen);
window_resized();
break;
@@ -371,7 +371,7 @@ static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventR
vo_fs = (!(vo_fs)); window_fullscreen();
}
- SizeWindow(theWindow, (d_width*2), (d_height*2)+border, 1);
+ SizeWindow(theWindow, (d_width*2), ((d_width/movie_aspect)*2)+border, 1);
RepositionWindow(theWindow, NULL, kWindowCascadeOnMainScreen);
window_resized();
break;