Parent Machine::Load()'s ProgressDialog and open it properly so it shows up where expected during profile load

This commit is contained in:
Mark Watkins 2018-05-31 10:35:27 +10:00
parent b8475ac970
commit 9313f47396

View File

@ -33,7 +33,9 @@
#include <algorithm>
#include "SleepLib/schema.h"
#include "SleepLib/day.h"
#include "mainwindow.h"
extern MainWindow * mainwin;
extern QProgressBar *qprogress;
//////////////////////////////////////////////////////////////////////////////////////////
@ -604,12 +606,12 @@ bool Machine::Load()
return false;
}
ProgressDialog * popup = new ProgressDialog(nullptr);
ProgressDialog * popup = new ProgressDialog(mainwin);
QPixmap image = getPixmap().scaled(64,64);
popup->setPixmap(image);
popup->setMessage(QObject::tr("Loading %1 data for %2...").arg(info.brand).arg(p_profile->user->userName()));
popup->show();
popup->open();
QProgressBar * saveQProgress = qprogress;