--- MPlayer-20020821/libvo/x11_common.c 2002-08-09 19:43:49.000000000 +0200 +++ MPlayer-20020822/libvo/x11_common.c 2002-08-21 23:24:23.000000000 +0200 @@ -588,6 +588,8 @@ ret|=VO_EVENT_EXPOSE; break; case ConfigureNotify: + if (!vo_fs && (Event.xconfigure.width == vo_screenwidth || Event.xconfigure.height == vo_screenheight)) break; + if (vo_fs && Event.xconfigure.width != vo_screenwidth && Event.xconfigure.height != vo_screenheight) break; vo_dwidth=Event.xconfigure.width; vo_dheight=Event.xconfigure.height; #if 0 @@ -756,6 +758,9 @@ if ( WinID >= 0 ) return; + if ( !vo_fs && (vo_dwidth == vo_screenwidth || vo_dheight == vo_screenheight)) return; + if ( vo_fs && vo_dwidth != vo_screenwidth && vo_dheight != vo_screenheight) return; + if ( vo_fs ) { vo_fs=VO_FALSE; x=vo_old_x; y=vo_old_y; w=vo_old_width; h=vo_old_height; } else { vo_fs=VO_TRUE; vo_old_x=vo_dx; vo_old_y=vo_dy; vo_old_width=vo_dwidth; vo_old_height=vo_dheight; }