1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 04:37:46 +00:00

Fix two more unqualified accesses

This commit is contained in:
Joshua Goins 2023-12-17 12:51:05 -05:00
parent 2ee37827ec
commit 67ddd649f9
2 changed files with 2 additions and 2 deletions

View file

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

View file

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