X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fserverlist.cpp;h=7f8e233a5d0540cf8a5e4e92111683ecf0b3fbcc;hp=2f99f05047342c26e1a5394775597405bbab844e;hb=e5ef65b239e9a128a5cf86e6eef9bce1fd098448;hpb=5048ca18618559fb68bd20a3e1904aa30ba35346 diff --git a/src/qtui/serverlist.cpp b/src/qtui/serverlist.cpp index 2f99f050..7f8e233a 100644 --- a/src/qtui/serverlist.cpp +++ b/src/qtui/serverlist.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -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() {