mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Parent Machine::Load()'s ProgressDialog and open it properly so it shows up where expected during profile load
This commit is contained in:
parent
b8475ac970
commit
9313f47396
@ -33,7 +33,9 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include "SleepLib/schema.h"
|
#include "SleepLib/schema.h"
|
||||||
#include "SleepLib/day.h"
|
#include "SleepLib/day.h"
|
||||||
|
#include "mainwindow.h"
|
||||||
|
|
||||||
|
extern MainWindow * mainwin;
|
||||||
extern QProgressBar *qprogress;
|
extern QProgressBar *qprogress;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -604,12 +606,12 @@ bool Machine::Load()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProgressDialog * popup = new ProgressDialog(nullptr);
|
ProgressDialog * popup = new ProgressDialog(mainwin);
|
||||||
|
|
||||||
QPixmap image = getPixmap().scaled(64,64);
|
QPixmap image = getPixmap().scaled(64,64);
|
||||||
popup->setPixmap(image);
|
popup->setPixmap(image);
|
||||||
popup->setMessage(QObject::tr("Loading %1 data for %2...").arg(info.brand).arg(p_profile->user->userName()));
|
popup->setMessage(QObject::tr("Loading %1 data for %2...").arg(info.brand).arg(p_profile->user->userName()));
|
||||||
popup->show();
|
popup->open();
|
||||||
|
|
||||||
QProgressBar * saveQProgress = qprogress;
|
QProgressBar * saveQProgress = qprogress;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user