mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Fix Profile startup crash
This commit is contained in:
parent
28049d5f2d
commit
f9bd536f54
@ -110,9 +110,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
|
if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
|
||||||
|
|
||||||
profile=Profiles::Get(pref["Profile"].toString());
|
|
||||||
Q_ASSERT(profile!=NULL);
|
|
||||||
|
|
||||||
if (!pref.Exists("LinkGraphMovement")) pref["LinkGraphMovement"]=true;
|
if (!pref.Exists("LinkGraphMovement")) pref["LinkGraphMovement"]=true;
|
||||||
ui->action_Link_Graphs->setChecked(pref["LinkGraphMovement"].toBool());
|
ui->action_Link_Graphs->setChecked(pref["LinkGraphMovement"].toBool());
|
||||||
|
|
||||||
@ -176,6 +173,9 @@ void MainWindow::Startup()
|
|||||||
qprogress->show();
|
qprogress->show();
|
||||||
//qstatusbar->showMessage(tr("Loading Data"),0);
|
//qstatusbar->showMessage(tr("Loading Data"),0);
|
||||||
|
|
||||||
|
profile=Profiles::Get(pref["Profile"].toString());
|
||||||
|
Q_ASSERT(profile!=NULL);
|
||||||
|
|
||||||
profile->LoadMachineData();
|
profile->LoadMachineData();
|
||||||
|
|
||||||
daily=new Daily(ui->tabWidget,profile,NULL,this);
|
daily=new Daily(ui->tabWidget,profile,NULL,this);
|
||||||
|
Loading…
Reference in New Issue
Block a user