From 940ea7caefb51f190e304884de7c368557955940 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 19 Dec 2023 20:43:09 -0500 Subject: [PATCH] Fix bug in download setup that prevented it from working --- launcher/ui/Setup/DownloadSetup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/ui/Setup/DownloadSetup.qml b/launcher/ui/Setup/DownloadSetup.qml index 13fc86f..56e15ad 100644 --- a/launcher/ui/Setup/DownloadSetup.qml +++ b/launcher/ui/Setup/DownloadSetup.qml @@ -37,7 +37,7 @@ FormCard.FormCardPage { text: i18n("Begin installation") icon.name: "cloud-download" - onClicked: page.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "InstallProgress"), { + onClicked: page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "InstallProgress"), { gameInstaller: LauncherCore.createInstaller(page.profile) }) }