[vlc-devel] commit: Typo: disable always-on-top when going fullscreen ( Rafaël Carré )
git version control
git at videolan.org
Sat May 10 13:43:45 CEST 2008
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sat May 10 13:40:04 2008 +0200| [65f6489e561f6dfeda6d12b103ccd35992c4d098]
Typo: disable always-on-top when going fullscreen
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=65f6489e561f6dfeda6d12b103ccd35992c4d098
---
modules/video_output/x11/xcommon.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/x11/xcommon.c b/modules/video_output/x11/xcommon.c
index 12032ce..b37ae25 100644
--- a/modules/video_output/x11/xcommon.c
+++ b/modules/video_output/x11/xcommon.c
@@ -1503,7 +1503,7 @@ static int ManageVideo( vout_thread_t *p_vout )
/* Disable "always on top" in fullscreen mode */
var_Get( p_vout, "video-on-top", &val_ontop );
if( val_ontop.b_bool )
- WindowOnTop( p_vout, val_fs.b_bool );
+ WindowOnTop( p_vout, !val_fs.b_bool );
ToggleFullScreen( p_vout );
p_vout->i_changes &= ~VOUT_FULLSCREEN_CHANGE;
More information about the vlc-devel
mailing list