[vlc-commits] Qt4: Fix FSController glitches on Linux/KDE

Ludovic Fauvet git at videolan.org
Tue Apr 12 01:51:32 CEST 2011


vlc/vlc-1.1 | branch: master | Ludovic Fauvet <etix at l0cal.com> | Mon Mar 28 15:45:50 2011 +0200| [33004ba7ca0807511a24f4fedd673a5cb9669136] | committer: Jean-Baptiste Kempf

Qt4: Fix FSController glitches on Linux/KDE

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit ffe7367b1672ec72705ec4cb440758ec0c869230)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=33004ba7ca0807511a24f4fedd673a5cb9669136
---

 modules/gui/qt4/components/controller.cpp |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/components/controller.cpp b/modules/gui/qt4/components/controller.cpp
index c995f19..d722914 100644
--- a/modules/gui/qt4/components/controller.cpp
+++ b/modules/gui/qt4/components/controller.cpp
@@ -43,6 +43,7 @@
 #include <QSpacerItem>
 #include <QToolButton>
 #include <QHBoxLayout>
+#include <QRegion>
 #include <QSignalMapper>
 #include <QTimer>
 
@@ -648,7 +649,12 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, QWi
 
     vout.clear();
 
+#ifdef Q_WS_X11
+    setWindowFlags( Qt::Window | Qt::FramelessWindowHint );
+    setWindowModality( Qt::ApplicationModal );
+#else
     setWindowFlags( Qt::ToolTip );
+#endif
     setMinimumWidth( 600 );
 
     setFrameShape( QFrame::StyledPanel );
@@ -747,6 +753,11 @@ void FullscreenControllerWidget::showFSC()
     setWindowOpacity( var_InheritFloat( p_intf, "qt-fs-opacity" )  );
 #endif
 
+#ifdef Q_WS_X11
+    // Tell kwin that we do not want a shadow around the fscontroller
+    setMask( QRegion( 0, 0, width(), height() ) );
+#endif
+
     show();
 }
 



More information about the vlc-commits mailing list