[MPlayer-cvslog] r37413 - trunk/gui/wm/ws.c

ib subversion at mplayerhq.hu
Thu Jun 4 18:06:17 CEST 2015


Author: ib
Date: Thu Jun  4 18:06:17 2015
New Revision: 37413

Log:
Fix condition.

It is supposed to be a logical AND rather than a bitwise one.

Modified:
   trunk/gui/wm/ws.c

Modified: trunk/gui/wm/ws.c
==============================================================================
--- trunk/gui/wm/ws.c	Thu Jun  4 05:32:05 2015	(r37412)
+++ trunk/gui/wm/ws.c	Thu Jun  4 18:06:17 2015	(r37413)
@@ -1210,7 +1210,7 @@ void wsWindowFullscreen(wsWindow *win)
     }
 
     /* some window managers lose ontop after fullscreen */
-    if (!win->isFullScreen & vo_ontop)
+    if (!win->isFullScreen && vo_ontop)
         wsWindowLayer(wsDisplay, win->WindowID, vo_ontop);
 
     wsWindowRaiseTop(wsDisplay, win->WindowID);


More information about the MPlayer-cvslog mailing list