mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Forgot to hide on startup when ShowDebug pref is false
This commit is contained in:
parent
189acc3c53
commit
27d7e35a21
@ -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());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user