summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-31 10:30:57 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-31 10:30:57 +0000
commitd33c0984d4075efa0a3e97dccba68c56cea377a7 (patch)
treefe1f8b687bcac37bafb934a2da890d11b6cfbea3 /Gui
parent2921bfbc693c45596fb94b4b120d3abd8a8b6234 (diff)
downloadmpv-d33c0984d4075efa0a3e97dccba68c56cea377a7.tar.bz2
mpv-d33c0984d4075efa0a3e97dccba68c56cea377a7.tar.xz
fix stop subimage
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1797 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/mplayer/play.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Gui/mplayer/play.c b/Gui/mplayer/play.c
index aa2aa81360..8ec67641bc 100644
--- a/Gui/mplayer/play.c
+++ b/Gui/mplayer/play.c
@@ -53,7 +53,11 @@ void mplStop()
printf("%%%%%% STOP \n");
// ---
mplShMem->Playing=0;
- mplSubRender=1;
+ if ( !appMPlayer.subWindow.isFullScreen )
+ {
+ wsMoveWindow( &appMPlayer.subWindow,appMPlayer.sub.x,appMPlayer.sub.y );
+ wsResizeWindow( &appMPlayer.subWindow,appMPlayer.sub.width,appMPlayer.sub.height );
+ }
}
void mplPlay( void )