X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fserverlist.cpp;fp=src%2Fqtui%2Fserverlist.cpp;h=f13ef1b1c792c05fa2e0085270c4e93cba37c673;hp=2f99f05047342c26e1a5394775597405bbab844e;hb=cf28e7152c5d940aec586be1b29fbf8ddc99f087;hpb=c6bc07febff322910675a1eb60c44f6be209a934 diff --git a/src/qtui/serverlist.cpp b/src/qtui/serverlist.cpp index 2f99f050..f13ef1b1 100644 --- a/src/qtui/serverlist.cpp +++ b/src/qtui/serverlist.cpp @@ -33,7 +33,7 @@ ServerListDlg::ServerListDlg(QWidget *parent) : QDialog(parent) { QSettings settings; settings.beginGroup("GUI"); - ui.showOnStartup->setChecked(settings.value("ShowServerListOnStartup", true).toBool()); + ui.showOnStartup->setChecked(settings.value("ShowServerListOnStartup", false).toBool()); updateNetworkTree(); connect(ui.networkTree, SIGNAL(itemSelectionChanged()), this, SLOT(updateButtons())); @@ -163,8 +163,8 @@ void ServerListDlg::editIdentities(bool end) { } void ServerListDlg::on_showOnStartup_stateChanged(int) { - QSettings s; - s.setValue("GUI/ShowServerListOnStartup", ui.showOnStartup->isChecked()); + //QSettings s; + //s.setValue("GUI/ShowServerListOnStartup", ui.showOnStartup->isChecked()); } void ServerListDlg::accept() {