summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-02-21 19:35:25 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-02-21 19:35:25 (GMT)
commit6a26cf436f81495242481ae7a27287e48ebc532a (patch)
tree15ff913ec0af224b8f334dca78511047247d85b2 /Swift/QtUI
parent7d77d33bdf81a708663f1fe2ca8300214c90159e (diff)
downloadswift-6a26cf436f81495242481ae7a27287e48ebc532a.zip
swift-6a26cf436f81495242481ae7a27287e48ebc532a.tar.bz2
Read in the notifications toggle at launch
Diffstat (limited to 'Swift/QtUI')
-rw-r--r--Swift/QtUI/QtLoginWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtLoginWindow.cpp b/Swift/QtUI/QtLoginWindow.cpp
index aafdef8..5b2cf5c 100644
--- a/Swift/QtUI/QtLoginWindow.cpp
+++ b/Swift/QtUI/QtLoginWindow.cpp
@@ -184,7 +184,7 @@ QtLoginWindow::QtLoginWindow(UIEventStream* uiEventStream, SettingsProvider* set
toggleNotificationsAction_ = new QAction(tr("Display Pop-up &Notifications"), this);
toggleNotificationsAction_->setCheckable(true);
- toggleNotificationsAction_->setChecked(true);
+ toggleNotificationsAction_->setChecked(settings_->getSetting(SettingConstants::SHOW_NOTIFICATIONS));
connect(toggleNotificationsAction_, SIGNAL(toggled(bool)), SLOT(handleToggleNotifications(bool)));
#ifndef SWIFTEN_PLATFORM_MACOSX