From ccb8bf62821bc4aaeb219609d6062ef107354ab4 Mon Sep 17 00:00:00 2001 From: dogmaphobic Date: Sat, 4 Apr 2015 23:08:28 -0400 Subject: [PATCH] Fix copy/paste error. Getting sloppy... --- src/ui/MainWindow.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/MainWindow.cc b/src/ui/MainWindow.cc index e40edac..38f581a 100644 --- a/src/ui/MainWindow.cc +++ b/src/ui/MainWindow.cc @@ -721,7 +721,7 @@ void MainWindow::loadSettings() settings.beginGroup(MAIN_SETTINGS_GROUP); _autoReconnect = settings.value("AUTO_RECONNECT", _autoReconnect).toBool(); _lowPowerMode = settings.value("LOW_POWER_MODE", _lowPowerMode).toBool(); - _showStatusBar = settings.value("SHOW_STATUSBAR", _lowPowerMode).toBool(); + _showStatusBar = settings.value("SHOW_STATUSBAR", _showStatusBar).toBool(); settings.endGroup(); // Select the proper view. Default to the flight view or load the last one used if it's supported. VIEW_SECTIONS currentViewCandidate = (VIEW_SECTIONS) settings.value("CURRENT_VIEW", _currentView).toInt();