From 9313f473967f1400732e2671da168d93eb55caca Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 31 May 2018 10:35:27 +1000 Subject: [PATCH] Parent Machine::Load()'s ProgressDialog and open it properly so it shows up where expected during profile load --- sleepyhead/SleepLib/machine.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sleepyhead/SleepLib/machine.cpp b/sleepyhead/SleepLib/machine.cpp index 9c2ced1b..d6fe8215 100644 --- a/sleepyhead/SleepLib/machine.cpp +++ b/sleepyhead/SleepLib/machine.cpp @@ -33,7 +33,9 @@ #include #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;