From 72124bbd3f08ae4f66092271ec45c30f321b8087 Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 14 Feb 2018 22:08:07 +0100 Subject: [PATCH] hide advanced mode option since it is not used anywhere in the software --- retroshare-gui/src/gui/settings/GeneralPage.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/retroshare-gui/src/gui/settings/GeneralPage.cpp b/retroshare-gui/src/gui/settings/GeneralPage.cpp index 58f699cbe..1900bbc85 100755 --- a/retroshare-gui/src/gui/settings/GeneralPage.cpp +++ b/retroshare-gui/src/gui/settings/GeneralPage.cpp @@ -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 */