diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-06 00:38:20 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-06 00:38:20 -0500 |
| commit | 52fbbae484b653519b5a40b0660584de8a9eabca (patch) | |
| tree | 59e2f3481cc0313159d44fe82282c4ee298f3318 | |
| parent | ce6cc47afedb05b7b47b1f713429e85474239f90 (diff) | |
| parent | f26f1469ca1d7a11c0031c3404fa433a478dd169 (diff) | |
| download | monzero-gui-52fbbae484b653519b5a40b0660584de8a9eabca.tar.gz monzero-gui-52fbbae484b653519b5a40b0660584de8a9eabca.tar.xz monzero-gui-52fbbae484b653519b5a40b0660584de8a9eabca.zip | |
Merge pull request #2883
f26f146 PasswordDialog: fix focus on open (selsta)
| -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 |
