summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 18:00:41 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-07 18:00:41 +0000
commitaad0dbd882d654a5bc1ba553725dd9f31fe246c3 (patch)
tree2113e47376ff31aad057c174a6620300a3f77e6c /Gui
parent0c9392449485c088d8aa25cb8b510c1489050537 (diff)
downloadmpv-aad0dbd882d654a5bc1ba553725dd9f31fe246c3.tar.bz2
mpv-aad0dbd882d654a5bc1ba553725dd9f31fe246c3.tar.xz
small bugfixes...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5521 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/mplayer/mw.h2
-rw-r--r--Gui/mplayer/widgets.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Gui/mplayer/mw.h b/Gui/mplayer/mw.h
index a3215ee770..c57e812e50 100644
--- a/Gui/mplayer/mw.h
+++ b/Gui/mplayer/mw.h
@@ -359,6 +359,7 @@ NoPause:
appMPlayer.subWindow.OldY=( wsMaxY - guiIntfStruct.MovieHeight ) / 2;
appMPlayer.subWindow.OldWidth=guiIntfStruct.MovieWidth; appMPlayer.subWindow.OldHeight=guiIntfStruct.MovieHeight;
wsFullScreen( &appMPlayer.subWindow );
+ vo_fs=0;
}
break;
case evDoubleSize:
@@ -369,6 +370,7 @@ NoPause:
appMPlayer.subWindow.OldY=( wsMaxY - guiIntfStruct.MovieHeight * 2 ) / 2;
appMPlayer.subWindow.OldWidth=guiIntfStruct.MovieWidth * 2; appMPlayer.subWindow.OldHeight=guiIntfStruct.MovieHeight * 2;
wsFullScreen( &appMPlayer.subWindow );
+ vo_fs=0;
}
break;
case evFullScreen:
diff --git a/Gui/mplayer/widgets.c b/Gui/mplayer/widgets.c
index 157328f0f0..0f8b226ad6 100644
--- a/Gui/mplayer/widgets.c
+++ b/Gui/mplayer/widgets.c
@@ -66,7 +66,7 @@ void gtkInit( int argc,char* argv[], char *envp[] )
{
gtk_set_locale();
gtk_init( &argc,&argv );
- gdk_set_use_xshm( TRUE );
+ gdk_set_use_xshm( FALSE );
widgetsCreate();
}