diff --git a/launcher/ui/Pages/LoginPage.qml b/launcher/ui/Pages/LoginPage.qml index bf52613..6d5d25b 100644 --- a/launcher/ui/Pages/LoginPage.qml +++ b/launcher/ui/Pages/LoginPage.qml @@ -249,7 +249,7 @@ QQC2.Control { enabled: page.isLoginValid onClicked: { LauncherCore.login(LauncherCore.currentProfile, usernameField.text, passwordField.text, otpField.text) - pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "StatusPage")) + page.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "StatusPage")) } } diff --git a/launcher/ui/Setup/DownloadSetup.qml b/launcher/ui/Setup/DownloadSetup.qml index e54b83f..13fc86f 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: pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "InstallProgress"), { + onClicked: page.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "InstallProgress"), { gameInstaller: LauncherCore.createInstaller(page.profile) }) }