Automatically go to the next wizard page when copying or patching completes.

This commit is contained in:
Jonathan Young 2014-05-15 13:54:18 +10:00
parent c32abd47f8
commit 91d101dee1
2 changed files with 2 additions and 0 deletions

View file

@ -131,4 +131,5 @@ void InstallWizard_Copy::finishCopy()
copyThread.wait(); copyThread.wait();
isCopyFinished = true; isCopyFinished = true;
emit completeChanged(); emit completeChanged();
wizard()->next();
} }

View file

@ -273,4 +273,5 @@ void InstallWizard_Patch::downloadFinished()
isPatchInstalled = true; isPatchInstalled = true;
emit completeChanged(); emit completeChanged();
wizard()->next();
} }