--- /home/attila/src/mplayer/main/libvo/x11_common.c 2004-02-25 16:02:50.000000000 +0100 +++ libvo/x11_common.c 2004-02-25 16:05:52.000000000 +0100 @@ -826,10 +826,13 @@ vo_hint.flags|=PMaxSize; } else { vo_hint.max_width=0; vo_hint.max_height=0; } - // set min height/width to 4 to avoid off by one errors - // and because mga_vid requires a minial size of 4 pixel - vo_hint.min_width = vo_hint.min_height = 4; - vo_hint.flags |= PMinSize; + if(!vo_fs) + { + // set min height/width to 4 to avoid off by one errors + // and because mga_vid requires a minial size of 4 pixel + vo_hint.min_width = vo_hint.min_height = 4; + vo_hint.flags |= PMinSize; + } vo_hint.win_gravity=StaticGravity; XSetWMNormalHints( mDisplay,vo_window,&vo_hint );