From 9fc55adefffc5829cb214309d4853c68edf3655c Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 18 May 2025 11:44:44 -0400 Subject: [PATCH] If you use an auto-generated OTP, focus the login button instead --- 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 b73f08c..254f1b6 100644 --- a/launcher/ui/Pages/LoginPage.qml +++ b/launcher/ui/Pages/LoginPage.qml @@ -83,7 +83,7 @@ QQC2.Control { return; } - if (LauncherCore.currentProfile.account.config.useOTP) { + if (LauncherCore.currentProfile.account.config.useOTP && !LauncherCore.currentProfile.account.config.rememberOTP) { otpField.forceActiveFocus(); return; }