]> git.sesse.net Git - vlc/commitdiff
Qt: toolbar editor, show the saved positionCombo item at start.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jan 2009 09:27:33 +0000 (10:27 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jan 2009 09:27:33 +0000 (10:27 +0100)
modules/gui/qt4/dialogs/toolbar.cpp

index 83108b35bb19de4e764fe93b27e4b770752e4fd5..f585542712be76b005f369827376a4316192c262 100644 (file)
@@ -77,6 +77,8 @@ ToolbarEditDialog::ToolbarEditDialog( intf_thread_t *_p_intf)
     positionCombo = new QComboBox;
     positionCombo->addItem( qtr( "Under the Video" ), QVariant( 0 ) );
     positionCombo->addItem( qtr( "Above the Video" ), QVariant( 1 ) );
+    positionCombo->setCurrentIndex( positionCombo->findData(
+                getSettings()->value( "MainWindow/ToolbarPos", 0 ).toInt() ) );
     mainTboxLayout->addWidget( positionCombo, 0, 2, 1, 1 );
 
     QLabel *line1Label = new QLabel( "Line 1:" );
@@ -134,6 +136,7 @@ ToolbarEditDialog::ToolbarEditDialog( intf_thread_t *_p_intf)
     /* Buttons */
     QDialogButtonBox *okCancel = new QDialogButtonBox;
     QPushButton *okButton = new QPushButton( qtr( "Cl&ose" ), this );
+    okButton->setDefault( true );
     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ), this );
     okCancel->addButton( okButton, QDialogButtonBox::AcceptRole );
     okCancel->addButton( cancelButton, QDialogButtonBox::RejectRole );