# HG changeset patch # User ib # Date 1358440745 0 # Node ID 96adc233474d95f69eb1267d2d6068c047ecf65b # Parent 8ce9bc8aa4439b01b7d4b6e3b5f24103d77c4b42 Fix bug introduced in r35757. (A double size video is supposed to change its position in order to fit into the screen, see r34086.) diff -r 8ce9bc8aa443 -r 96adc233474d gui/ui/main.c --- a/gui/ui/main.c Thu Jan 17 15:46:21 2013 +0000 +++ b/gui/ui/main.c Thu Jan 17 16:39:05 2013 +0000 @@ -353,6 +353,7 @@ uiFullScreen(); } wsResizeWindow( &guiApp.videoWindow, guiInfo.VideoWidth * 2, guiInfo.VideoHeight * 2 ); + wsMoveWindowWithin( &guiApp.videoWindow, False, guiApp.video.x, guiApp.video.y ); btnSet( evFullScreen,btnReleased ); } break;