From: tobtoht Date: Wed, 3 Jan 2024 01:00:36 +0000 (+0100) Subject: PasswordDialog: set focus to password field X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=d53c9fb3add8296c0669de338d8c527bbbc1176a;p=gamesguru%2Ffeather.git PasswordDialog: set focus to password field --- diff --git a/src/dialog/PasswordDialog.cpp b/src/dialog/PasswordDialog.cpp index 45059ba7..ad2e5a39 100644 --- a/src/dialog/PasswordDialog.cpp +++ b/src/dialog/PasswordDialog.cpp @@ -21,6 +21,8 @@ PasswordDialog::PasswordDialog(const QString &walletName, bool incorrectPassword password = ui->line_password->text(); }); + ui->line_password->setFocus(); + this->adjustSize(); }