Commit cd62d6f2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix toolbars customization

Close #5547
This must be a side-effect of the playlist settings
parent d3f5170f
...@@ -636,13 +636,13 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, ...@@ -636,13 +636,13 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
QHBoxLayout *controlLayout1 = new QHBoxLayout; QHBoxLayout *controlLayout1 = new QHBoxLayout;
controlLayout1->setSpacing( 0 ); controlLayout1->setMargin( 0 ); controlLayout1->setSpacing( 0 ); controlLayout1->setMargin( 0 );
QString line1 = getSettings()->value( "MainToolbar1", MAIN_TB1_DEFAULT ) QString line1 = getSettings()->value( "MainWindow/MainToolbar1", MAIN_TB1_DEFAULT )
.toString(); .toString();
parseAndCreate( line1, controlLayout1 ); parseAndCreate( line1, controlLayout1 );
QHBoxLayout *controlLayout2 = new QHBoxLayout; QHBoxLayout *controlLayout2 = new QHBoxLayout;
controlLayout2->setSpacing( 0 ); controlLayout2->setMargin( 0 ); controlLayout2->setSpacing( 0 ); controlLayout2->setMargin( 0 );
QString line2 = getSettings()->value( "MainToolbar2", MAIN_TB2_DEFAULT ) QString line2 = getSettings()->value( "MainWindow/MainToolbar2", MAIN_TB2_DEFAULT )
.toString(); .toString();
parseAndCreate( line2, controlLayout2 ); parseAndCreate( line2, controlLayout2 );
...@@ -676,7 +676,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i, QWidget *_parent ) : ...@@ -676,7 +676,7 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i, QWidget *_parent ) :
#endif #endif
QString line = getSettings()->value( "AdvToolbar", ADV_TB_DEFAULT ) QString line = getSettings()->value( "MainWindow/AdvToolbar", ADV_TB_DEFAULT )
.toString(); .toString();
parseAndCreate( line, controlLayout ); parseAndCreate( line, controlLayout );
} }
...@@ -692,7 +692,7 @@ InputControlsWidget::InputControlsWidget( intf_thread_t *_p_i, QWidget *_parent ...@@ -692,7 +692,7 @@ InputControlsWidget::InputControlsWidget( intf_thread_t *_p_i, QWidget *_parent
setStyleSheet( "background: green "); setStyleSheet( "background: green ");
#endif #endif
QString line = getSettings()->value( "InputToolbar", INPT_TB_DEFAULT ).toString(); QString line = getSettings()->value( "MainWindow/InputToolbar", INPT_TB_DEFAULT ).toString();
parseAndCreate( line, controlLayout ); parseAndCreate( line, controlLayout );
} }
/********************************************************************** /**********************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment