summaryrefslogtreecommitdiffstats
path: root/libvo/vo_x11.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-06 16:56:41 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-06 16:56:41 +0000
commita1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7 (patch)
treee0e46b55069e0a244d6c203c790a6e387443a9ef /libvo/vo_x11.c
parent48da357ce5714f1375a6ef5358c4380c8c3232b8 (diff)
downloadmpv-a1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7.tar.bz2
mpv-a1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7.tar.xz
fix -fs and 'f'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6000 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_x11.c')
-rw-r--r--libvo/vo_x11.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c
index 0ddcbe8604..0ed6d0616f 100644
--- a/libvo/vo_x11.c
+++ b/libvo/vo_x11.c
@@ -303,11 +303,11 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t
}
else
#endif
- if ( fullscreen )
- {
- hint.width=vo_screenwidth;
- hint.height=vo_screenheight;
- }
+// if ( fullscreen )
+// {
+// hint.width=vo_screenwidth;
+// hint.height=vo_screenheight;
+// }
hint.flags=PPosition | PSize;
bg=WhitePixel( mDisplay,mScreen );
@@ -344,10 +344,10 @@ static uint32_t config( uint32_t width,uint32_t height,uint32_t d_width,uint32_t
vo_x11_classhint( mDisplay,vo_window,"x11" );
vo_hidecursor(mDisplay,vo_window);
- if ( fullscreen ) vo_x11_decoration( mDisplay,vo_window,0 );
XSelectInput( mDisplay,vo_window,StructureNotifyMask );
XSetStandardProperties( mDisplay,vo_window,title,title,None,NULL,0,&hint );
XMapWindow( mDisplay,vo_window );
+ if ( fullscreen ) vo_x11_fullscreen();
#ifdef HAVE_XINERAMA
vo_x11_xinerama_move(mDisplay,vo_window);
#endif