# HG changeset patch # User pontscho # Date 1013098508 0 # Node ID cc34a9ba42df124e33b334f27357688c5ff74365 # Parent a7f2c58a9ab1086183bc8ed70a718f0a78e80bf8 fs resize bug fix. diff -r a7f2c58a9ab1 -r cc34a9ba42df libvo/vo_xmga.c --- a/libvo/vo_xmga.c Thu Feb 07 15:29:15 2002 +0000 +++ b/libvo/vo_xmga.c Thu Feb 07 16:15:08 2002 +0000 @@ -102,6 +102,9 @@ static void mDrawColorKey( void ) { + XSetBackground( mDisplay,mGC,0 ); +// XFillRectangle( mDisplay,mWindow,mGC,0,0,drwWidth,drwHeight ); + XClearWindow( mDisplay,mWindow ); XSetForeground( mDisplay,mGC,fgColor ); XFillRectangle( mDisplay,mWindow,mGC,drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight) ); XFlush( mDisplay );