Forgot to hide on startup when ShowDebug pref is false

This commit is contained in:
Mark Watkins 2011-07-18 02:07:37 +10:00
parent 189acc3c53
commit 27d7e35a21

View File

@ -70,6 +70,10 @@ MainWindow::MainWindow(QWidget *parent) :
if (!pref.Exists("ShowDebug")) pref["ShowDebug"]=false;
else ui->actionDebug->setChecked(pref["ShowDebug"].toBool());
if (!pref["ShowDebug"].toBool()) {
ui->logText->hide();
}
if (!pref.Exists("NoonDateSplit")) pref["NoonDateSplit"]=false;
else ui->action_Noon_Date_Split->setChecked(pref["NoonDateSplit"].toBool());