Mercurial > mplayer.hg
changeset 35671:96adc233474d
Fix bug introduced in r35757.
(A double size video is supposed to change its position
in order to fit into the screen, see r34086.)
author | ib |
---|---|
date | Thu, 17 Jan 2013 16:39:05 +0000 |
parents | 8ce9bc8aa443 |
children | 144d3a71db7d |
files | gui/ui/main.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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;