summaryrefslogtreecommitdiffstats
path: root/Gui/wm
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-02 21:10:42 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-02 21:10:42 +0000
commitec989de7b062682835c721b173e9475b9ecaba44 (patch)
tree7c9ca3e7edbd92463d18bdc16c44ebdbd4b44aa8 /Gui/wm
parent174efd77f23b4bb3f03cd43b972336adebc1c2e6 (diff)
downloadmpv-ec989de7b062682835c721b173e9475b9ecaba44.tar.bz2
mpv-ec989de7b062682835c721b173e9475b9ecaba44.tar.xz
fix window hiding bug with some wms (kde, gnome, icewm, mwm, wmaker)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6623 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/wm')
-rw-r--r--Gui/wm/ws.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gui/wm/ws.c b/Gui/wm/ws.c
index d3fabf00e3..427549ede9 100644
--- a/Gui/wm/ws.c
+++ b/Gui/wm/ws.c
@@ -662,16 +662,16 @@ buttonreleased:
if ( !strncmp( name,"_ICEWM_TRAY",11 ) )
{
wsWMType=wsWMIceWM;
- mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is IceWM.\n" );
+// mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is IceWM.\n" );
}
if ( !strncmp( name,"_KDE_",5 ) )
{
- mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is KDE.\n" );
+// mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is KDE.\n" );
wsWMType=wsWMKDE;
}
if ( !strncmp( name,"KWM_WIN_DESKTOP",15 ) )
{
- mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is WindowMaker style.\n" );
+// mp_dbg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Detected wm is WindowMaker style.\n" );
wsWMType=wsWMWMaker;
}