Commit 46be9840 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: consistency on QSettings value for OpenDialog

parent 78df4901
...@@ -591,7 +591,7 @@ NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : ...@@ -591,7 +591,7 @@ NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
if( var_InheritBool( p_intf, "qt-recentplay" ) ) if( var_InheritBool( p_intf, "qt-recentplay" ) )
{ {
b_recentList = true; b_recentList = true;
ui.urlComboBox->addItems( getSettings()->value( "Open/netMRL" ).toStringList() ); ui.urlComboBox->addItems( getSettings()->value( "OpenDialog/netMRL" ).toStringList() );
ui.urlComboBox->setMaxCount( 10 ); ui.urlComboBox->setMaxCount( 10 );
} }
else else
...@@ -614,7 +614,7 @@ NetOpenPanel::~NetOpenPanel() ...@@ -614,7 +614,7 @@ NetOpenPanel::~NetOpenPanel()
/* Clean the list... */ /* Clean the list... */
mrlList.removeDuplicates(); mrlList.removeDuplicates();
/* ...and save the 8 last entries */ /* ...and save the 8 last entries */
getSettings()->setValue( "Open/netMRL", mrlList ); getSettings()->setValue( "OpenDialog/netMRL", mrlList );
} }
void NetOpenPanel::clear() void NetOpenPanel::clear()
......
...@@ -166,7 +166,7 @@ OpenDialog::OpenDialog( QWidget *parent, ...@@ -166,7 +166,7 @@ OpenDialog::OpenDialog( QWidget *parent,
BUTTONACT( cancelButton, cancel() ); BUTTONACT( cancelButton, cancel() );
/* Hide the advancedPanel */ /* Hide the advancedPanel */
if( !getSettings()->value( "opendialog-advanced", false ).toBool()) if( !getSettings()->value( "OpenDialog/advanced", false ).toBool())
{ {
ui.advancedFrame->hide(); ui.advancedFrame->hide();
ui.advancedFrame->setEnabled( false ); ui.advancedFrame->setEnabled( false );
...@@ -183,7 +183,7 @@ OpenDialog::OpenDialog( QWidget *parent, ...@@ -183,7 +183,7 @@ OpenDialog::OpenDialog( QWidget *parent,
setMinimumSize( sizeHint() ); setMinimumSize( sizeHint() );
setMaximumWidth( 900 ); setMaximumWidth( 900 );
resize( getSettings()->value( "opendialog-size", QSize( 500, 400 ) ).toSize() ); resize( getSettings()->value( "OpenDialog/size", QSize( 500, 400 ) ).toSize() );
} }
/* Finish the dialog and decide if you open another one after */ /* Finish the dialog and decide if you open another one after */
...@@ -219,10 +219,10 @@ void OpenDialog::setMenuAction() ...@@ -219,10 +219,10 @@ void OpenDialog::setMenuAction()
OpenDialog::~OpenDialog() OpenDialog::~OpenDialog()
{ {
getSettings()->setValue( "opendialog-size", size() - getSettings()->setValue( "OpenDialog/size", size() -
( ui.advancedFrame->isEnabled() ? ( ui.advancedFrame->isEnabled() ?
QSize(0, ui.advancedFrame->height()) : QSize(0, 0) ) ); QSize(0, ui.advancedFrame->height()) : QSize(0, 0) ) );
getSettings()->setValue( "opendialog-advanced", ui.advancedFrame->isVisible() ); getSettings()->setValue( "OpenDialog/advanced", ui.advancedFrame->isVisible() );
} }
/* Used by VLM dialog and inputSlave selection */ /* Used by VLM dialog and inputSlave selection */
......
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