hide advanced mode option since it is not used anywhere in the software

This commit is contained in:
csoler 2018-02-14 22:08:07 +01:00
parent cf33221f2f
commit 72124bbd3f
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -92,6 +92,10 @@ GeneralPage::GeneralPage(QWidget * parent, Qt::WindowFlags flags) :
//connect(ui.runStartWizard_PB, SIGNAL(clicked()), this,SLOT(runStartWizard())) ;
connect(ui.checkAdvanced, SIGNAL(toggled(bool)), this,SLOT(updateAdvancedMode())) ;
connect(ui.registerRetroShareProtocol, SIGNAL(toggled(bool)), this,SLOT(updateRegisterRSProtocol())) ;
// hide advanced checkbox, since the option is not used.
ui.advGBox->hide();
}
/** Destructor */