From 67ddd649f9eb9a724e38784556d1b071594c27ed Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 17 Dec 2023 12:51:05 -0500 Subject: [PATCH] Fix two more unqualified accesses --- launcher/ui/Pages/LoginPage.qml | 2 +- launcher/ui/Setup/DownloadSetup.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) }) }