Git commit bf0870ecd16e49dacff63692f27d4c00a9ed13e7 by Jan Kundr?t. Committed on 17/05/2013 at 16:15. Pushed by jkt into branch 'master'.
GUI: make the settings dialog in sync with the default value of the "show systray" refs #67 CCMAIL: stefan.koegl at tu-dortmund.de M +1 -1 src/Gui/SettingsDialog.cpp http://commits.kde.org/trojita/bf0870ecd16e49dacff63692f27d4c00a9ed13e7 diff --git a/src/Gui/SettingsDialog.cpp b/src/Gui/SettingsDialog.cpp index e7e5c4b..9c4c8cf 100644 --- a/src/Gui/SettingsDialog.cpp +++ b/src/Gui/SettingsDialog.cpp @@ -140,7 +140,7 @@ GeneralPage::GeneralPage(QWidget *parent, QSettings &s, Composer::SenderIdentiti "and the underlying operating system. No private information, like account settings " "or IMAP server details, are collected.</p>")); - guiSystrayCheckbox->setChecked(s.value(Common::SettingsNames::guiShowSystray, QVariant(false)).toBool()); + guiSystrayCheckbox->setChecked(s.value(Common::SettingsNames::guiShowSystray, QVariant(true)).toBool()); preferPlaintextCheckbox->setChecked(s.value(Common::SettingsNames::guiPreferPlaintextRendering).toBool());
