diff --git a/launchers/qt/src/Launcher.cpp b/launchers/qt/src/Launcher.cpp index edc52f6427..cf80604c39 100644 --- a/launchers/qt/src/Launcher.cpp +++ b/launchers/qt/src/Launcher.cpp @@ -33,6 +33,8 @@ Launcher::Launcher(int& argc, char**argv) : QGuiApplication(argc, argv) { QFontDatabase::addApplicationFont(PathUtils::fontPath("Graphik-Semibold.ttf")); _launcherWindow->setSource(QUrl(PathUtils::resourcePath("qml/root.qml"))); + _launcherWindow->setHeight(540); + _launcherWindow->setWidth(627); _launcherWindow->setResizeMode(QQuickView::SizeRootObjectToView); _launcherWindow->show(); } diff --git a/launchers/qt/src/LauncherState.cpp b/launchers/qt/src/LauncherState.cpp index d4b75ca509..42d13bfa58 100644 --- a/launchers/qt/src/LauncherState.cpp +++ b/launchers/qt/src/LauncherState.cpp @@ -673,6 +673,8 @@ void LauncherState::contentCacheDownloadComplete() { if (reply->error()) { qDebug() << "Error downloading content cache: " << reply->error() << reply->readAll(); qDebug() << "Continuing to launch client"; + _contentDownloadProgress = 100.0f; + _contentInstallProgress = 100.0f; launchClient(); return; } diff --git a/launchers/qt/src/main.cpp b/launchers/qt/src/main.cpp index c7925a79dc..3918ec944e 100644 --- a/launchers/qt/src/main.cpp +++ b/launchers/qt/src/main.cpp @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) { if (argc == 3) { if (hasSuffix(argv[1], "app") && hasSuffix(argv[2], "app")) { bool success = swapLaunchers(argv[1], argv[2]); - qDebug() << "Launcher install success: " << success; + qDebug() << "Successfully installed Launcher: " << success; if (!success) { options->append("--noUpdate"); }