]> git.sesse.net Git - vlc/commitdiff
[Qt] make slower/faster buttons flat by default in FSC.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 15 Oct 2008 18:32:46 +0000 (20:32 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 15 Oct 2008 18:33:17 +0000 (20:33 +0200)
modules/gui/qt4/components/controller.cpp

index e0f0d1f7b588dd74381cf909a38526b0d6a30c15..4a55a936b3e90ada83a61319b8dccacdbdd9cd1a 100644 (file)
@@ -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 );