summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-09 23:57:28 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-09 23:57:28 +0000
commit97c7df03b7f3107ab7e6bed073437351b6e8d081 (patch)
tree9964764a7e97bfe3448655aeb3bb10df32e65c0f /libvo
parentc5d2aa69d9dd7d67172ed9b3f938dc68a4f59cf4 (diff)
downloadmpv-97c7df03b7f3107ab7e6bed073437351b6e8d081.tar.bz2
mpv-97c7df03b7f3107ab7e6bed073437351b6e8d081.tar.xz
vo_macosx.m disable window animation when going to fullscreen
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21562 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_macosx.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/libvo/vo_macosx.m b/libvo/vo_macosx.m
index ad60ff459b..03453c29eb 100644
--- a/libvo/vo_macosx.m
+++ b/libvo/vo_macosx.m
@@ -327,7 +327,7 @@ static int control(uint32_t request, void *data, ...)
case VOCTRL_QUERY_FORMAT: return query_format(*((uint32_t*)data));
case VOCTRL_ONTOP: vo_ontop = (!(vo_ontop)); [mpGLView ontop]; return VO_TRUE;
case VOCTRL_ROOTWIN: vo_rootwin = (!(vo_rootwin)); [mpGLView rootwin]; return VO_TRUE;
- case VOCTRL_FULLSCREEN: vo_fs = (!(vo_fs)); [mpGLView fullscreen: YES]; return VO_TRUE;
+ case VOCTRL_FULLSCREEN: vo_fs = (!(vo_fs)); [mpGLView fullscreen: NO]; return VO_TRUE;
case VOCTRL_GET_PANSCAN: return VO_TRUE;
case VOCTRL_SET_PANSCAN: [mpGLView panscan]; return VO_TRUE;
}
@@ -489,7 +489,7 @@ static int control(uint32_t request, void *data, ...)
if(sender == kHalfScreenCmd)
{
if(isFullscreen) {
- vo_fs = (!(vo_fs)); [self fullscreen:YES];
+ vo_fs = (!(vo_fs)); [self fullscreen:NO];
}
winSizeMult = 0.5;
@@ -501,7 +501,7 @@ static int control(uint32_t request, void *data, ...)
if(sender == kNormalScreenCmd)
{
if(isFullscreen) {
- vo_fs = (!(vo_fs)); [self fullscreen:YES];
+ vo_fs = (!(vo_fs)); [self fullscreen:NO];
}
winSizeMult = 1;
@@ -513,7 +513,7 @@ static int control(uint32_t request, void *data, ...)
if(sender == kDoubleScreenCmd)
{
if(isFullscreen) {
- vo_fs = (!(vo_fs)); [self fullscreen:YES];
+ vo_fs = (!(vo_fs)); [self fullscreen:NO];
}
winSizeMult = 2;
@@ -525,7 +525,7 @@ static int control(uint32_t request, void *data, ...)
if(sender == kFullScreenCmd)
{
vo_fs = (!(vo_fs));
- [self fullscreen:YES];
+ [self fullscreen:NO];
}
if(sender == kKeepAspectCmd)