From 322885e8e890da3458f7af84239d6792d081539f Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 20 Dec 2023 21:35:29 -0500 Subject: [PATCH] Fix password field sometimes being disabled when it shouldn't --- launcher/ui/Pages/LoginPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/ui/Pages/LoginPage.qml b/launcher/ui/Pages/LoginPage.qml index 1d71d5f..75a7830 100644 --- a/launcher/ui/Pages/LoginPage.qml +++ b/launcher/ui/Pages/LoginPage.qml @@ -206,7 +206,7 @@ QQC2.Control { id: passwordField label: LauncherCore.currentProfile.account.isSapphire ? i18n("Password") : i18n("Square Enix Password") echoMode: TextInput.Password - enabled: LauncherCore.currentProfile.account.needsPassword + enabled: LauncherCore.currentProfile.account.rememberPassword ? LauncherCore.currentProfile.account.needsPassword : true focus: true onAccepted: { if (otpField.visible) {