summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-02 23:01:25 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-11-02 23:01:25 +0000
commitee98fdf176527c31186ed0427155335346792b40 (patch)
tree3e229820f949622dd2151c01918302e5977f6f69 /libvo
parent086a7bea56735b0cd8a7f346130ea9a83c0eb3bc (diff)
downloadmpv-ee98fdf176527c31186ed0427155335346792b40.tar.bz2
mpv-ee98fdf176527c31186ed0427155335346792b40.tar.xz
remove window shadow in fullscreen
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13857 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_quartz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_quartz.c b/libvo/vo_quartz.c
index 29bbde5617..2c0522a6d1 100644
--- a/libvo/vo_quartz.c
+++ b/libvo/vo_quartz.c
@@ -1289,7 +1289,7 @@ void window_fullscreen()
//go fullscreen
border = 0;
panscan_calc();
- ChangeWindowAttributes(theWindow, 0, kWindowResizableAttribute|kWindowNoShadowAttribute);
+ ChangeWindowAttributes(theWindow, kWindowNoShadowAttribute, kWindowResizableAttribute);
MoveWindow(theWindow, deviceRect.left-(vo_panscan_x >> 1), deviceRect.top-(vo_panscan_y >> 1), 1);
SizeWindow(theWindow, device_width+vo_panscan_x, device_height+vo_panscan_y,1);