maybe a fix for windows scaling

This commit is contained in:
Dante Ruiz 2019-10-17 13:46:43 -07:00
parent 3debfb95b0
commit f4f634f67b
3 changed files with 5 additions and 1 deletions

View file

@ -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();
}

View file

@ -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;
}

View file

@ -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");
}