[vlc-devel] commit: [Qt] make slower/faster buttons flat by default in FSC. ( Jean-Baptiste Kempf )

git version control git at videolan.org
Wed Oct 15 20:33:28 CEST 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Oct 15 20:32:46 2008 +0200| [924df6a31f525b21fc56fbfc99d07f80e78123d0] | committer: Jean-Baptiste Kempf 

[Qt] make slower/faster buttons flat by default in FSC.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=924df6a31f525b21fc56fbfc99d07f80e78123d0
---

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

diff --git a/modules/gui/qt4/components/controller.cpp b/modules/gui/qt4/components/controller.cpp
index e0f0d1f..4a55a93 100644
--- a/modules/gui/qt4/components/controller.cpp
+++ b/modules/gui/qt4/components/controller.cpp
@@ -781,9 +781,9 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
     controlLayout->setLayoutMargins( 5, 2, 5, 2, 5 );
 
     /* First line */
-    controlLayout->addWidget( createWidget( SLOWER_BUTTON ), 0, 0 );
+    controlLayout->addWidget( createWidget( SLOWER_BUTTON, true ), 0, 0 );
     controlLayout->addWidget( createWidget( INPUT_SLIDER ), 0, 1, 1, 13 );
-    controlLayout->addWidget( createWidget( FASTER_BUTTON ), 0, 14 );
+    controlLayout->addWidget( createWidget( FASTER_BUTTON, true ), 0, 14 );
 
     /* Second line */
     controlLayout->addWidget( createWidget( PLAY_BUTTON, false, true ), 1, 0, 1, 2 );




More information about the vlc-devel mailing list