Commit 9b6f20a1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: show advanced preferences in 2 cases: --qt-advanced-option and --advanced.

Close #2270.
parent 2c688720
......@@ -114,7 +114,7 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
setMaximumHeight( p_intf->p_sys->i_screenHeight );
for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL;
if( config_GetInt( p_intf, "qt-advanced-pref" ) == 1 )
if( config_GetInt( p_intf, "qt-advanced-pref" ) || config_GetInt( p_intf, "advanced" ) )
setAdvanced();
else
setSmall();
......
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