[vlc-commits] commit: Revert "Added Qt::Tool flag on the fullscreen widget." ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Sun May 30 17:02:44 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun May 30 17:59:31 2010 +0300| [985a8c9ef8b62b3237fd49a1b620d79fa221d305] | committer: Rémi Denis-Courmont
Revert "Added Qt::Tool flag on the fullscreen widget."
This reverts commit a91750568de08cd94738e8692420ddc4b2088f5c.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=985a8c9ef8b62b3237fd49a1b620d79fa221d305
---
modules/gui/qt4/components/interface_widgets.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index 87521ab..988b95d 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -197,12 +197,12 @@ void VideoWidget::SetFullScreen( bool b_fs )
if( b_fs )
{
newstate |= Qt::WindowFullScreen;
- newflags |= Qt::WindowStaysOnTopHint | Qt::Tool;
+ newflags |= Qt::WindowStaysOnTopHint;
}
else
{
newstate &= ~Qt::WindowFullScreen;
- newflags &= ~(Qt::WindowStaysOnTopHint | Qt::Tool);
+ newflags &= ~Qt::WindowStaysOnTopHint;
}
if( newstate == curstate )
return; /* no changes needed */
More information about the vlc-commits
mailing list