mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 12:47:44 +00:00
Fix two more unqualified accesses
This commit is contained in:
parent
2ee37827ec
commit
67ddd649f9
2 changed files with 2 additions and 2 deletions
|
@ -249,7 +249,7 @@ QQC2.Control {
|
||||||
enabled: page.isLoginValid
|
enabled: page.isLoginValid
|
||||||
onClicked: {
|
onClicked: {
|
||||||
LauncherCore.login(LauncherCore.currentProfile, usernameField.text, passwordField.text, otpField.text)
|
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"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ FormCard.FormCardPage {
|
||||||
|
|
||||||
text: i18n("Begin installation")
|
text: i18n("Begin installation")
|
||||||
icon.name: "cloud-download"
|
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)
|
gameInstaller: LauncherCore.createInstaller(page.profile)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue