mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10: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;
|
if (!pref.Exists("ShowDebug")) pref["ShowDebug"]=false;
|
||||||
else ui->actionDebug->setChecked(pref["ShowDebug"].toBool());
|
else ui->actionDebug->setChecked(pref["ShowDebug"].toBool());
|
||||||
|
|
||||||
|
if (!pref["ShowDebug"].toBool()) {
|
||||||
|
ui->logText->hide();
|
||||||
|
}
|
||||||
|
|
||||||
if (!pref.Exists("NoonDateSplit")) pref["NoonDateSplit"]=false;
|
if (!pref.Exists("NoonDateSplit")) pref["NoonDateSplit"]=false;
|
||||||
else ui->action_Noon_Date_Split->setChecked(pref["NoonDateSplit"].toBool());
|
else ui->action_Noon_Date_Split->setChecked(pref["NoonDateSplit"].toBool());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user