hide the feed option button until we figure out how to do it properly. Also fixed the crash when showing network settings on hidden nodes

This commit is contained in:
csoler 2017-02-28 21:41:45 +01:00
parent 9d3df7c01f
commit 4abf2c6bf1
3 changed files with 30 additions and 31 deletions

View file

@ -60,7 +60,6 @@ SettingsPage::SettingsPage(QWidget *parent)
{
ui.setupUi(this);
setAttribute(Qt::WA_DeleteOnClose, true);
// setModal(false);
/* Initialize help browser */
mHelpBrowser = new FloatingHelpBrowser(this, ui.helpButton);
@ -74,8 +73,6 @@ SettingsPage::SettingsPage(QWidget *parent)
}
connect(ui.listWidget, SIGNAL(currentRowChanged(int)), this, SLOT(setNewPage(int)));
// connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(saveChanges()));
// connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(close()));
connect(this, SIGNAL(finished(int)), this, SLOT(dialogFinished(int)));
}