diff options
| author | selsta <selsta@sent.at> | 2020-05-03 15:51:46 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-05-03 15:51:46 +0200 |
| commit | f26f1469ca1d7a11c0031c3404fa433a478dd169 (patch) | |
| tree | 59e2f3481cc0313159d44fe82282c4ee298f3318 /components/PasswordDialog.qml | |
| parent | ce6cc47afedb05b7b47b1f713429e85474239f90 (diff) | |
| download | monzero-gui-f26f1469ca1d7a11c0031c3404fa433a478dd169.tar.gz monzero-gui-f26f1469ca1d7a11c0031c3404fa433a478dd169.tar.xz monzero-gui-f26f1469ca1d7a11c0031c3404fa433a478dd169.zip | |
PasswordDialog: fix focus on open
Diffstat (limited to 'components/PasswordDialog.qml')
| -rw-r--r-- | components/PasswordDialog.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index f9ea5569..a572b874 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -63,7 +63,7 @@ Item { capsLockTextLabel.visible = oshelper.isCapsLock(); passwordInput1.reset(); passwordInput2.reset(); - passwordInput1.forceActiveFocus(); + passwordInput1.input.forceActiveFocus(); root.walletName = walletName ? walletName : "" errorTextLabel.text = errorText ? errorText : ""; leftPanel.enabled = false |
