]> git.sesse.net Git - vlc/commitdiff
Qt: put the Fullscreen Controller back on 2 lines.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 7 Jan 2009 11:41:26 +0000 (12:41 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 7 Jan 2009 11:42:00 +0000 (12:42 +0100)
modules/gui/qt4/components/controller.cpp

index 054256cde7fd369962e8fed2180aa7a60890f2a3..25d5ee638ea5cfbf129160d9c0a13c77a6c56923 100644 (file)
@@ -809,12 +809,12 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
     setFrameStyle( QFrame::Sunken );
     setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
 
-    controlLayout = new QHBoxLayout( this );
-    controlLayout->setLayoutMargins( 5, 2, 5, 2, 5 );
+    QVBoxLayout *controlLayout2 = new QVBoxLayout( this );
+    controlLayout2->setLayoutMargins( 5, 2, 5, 2, 5 );
 
     /* First line */
     InputControlsWidget *inputC = new InputControlsWidget( p_intf, this );
-    controlLayout->addWidget( inputC );
+    controlLayout2->addWidget( inputC );
 
     /* Second line */
 /*     QString line = QString( "%1-2;%2;%3;%4;%5;%2;%6;%2;%7;%2;%8;%9;%10-4")
@@ -830,9 +830,11 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
         .arg( TIME_LABEL )
         .arg( VOLUME ); */
 
+    controlLayout = new QHBoxLayout;
     QString line = getSettings()->value( "MainWindow/FSCtoolbar",
             "0-2;64;3;1;4;64;36;64;37;64;8;65;35-4;34" ).toString();
     parseAndCreate( line, controlLayout );
+    controlLayout2->addLayout( controlLayout );
 
     /* hiding timer */
     p_hideTimer = new QTimer( this );