diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-07-14 15:50:14 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-07-14 15:50:14 -0500 |
| commit | 2cea0fc669fcf2db2007123ec6ae9bff64379f5c (patch) | |
| tree | bf5c785ecb6ea1dcb8177e84acdc962fcd93295f | |
| parent | aaa1cb47c007f35dc75b8ce3b041368b9e268f31 (diff) | |
| parent | 7c50e1ff4bd79b2b8ebf8130c2a93f58c865b124 (diff) | |
| download | monzero-gui-2cea0fc669fcf2db2007123ec6ae9bff64379f5c.tar.gz monzero-gui-2cea0fc669fcf2db2007123ec6ae9bff64379f5c.tar.xz monzero-gui-2cea0fc669fcf2db2007123ec6ae9bff64379f5c.zip | |
Merge pull request #3009
7c50e1f PasswordDialog: focus on gui start (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 27d0cbc8..10a10954 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -62,7 +62,7 @@ Item { capsLockTextLabel.visible = oshelper.isCapsLock(); passwordInput1.reset(); passwordInput2.reset(); - if(appWindow.active) + if(!appWindow.currentWallet || appWindow.active) passwordInput1.input.forceActiveFocus(); root.walletName = walletName ? walletName : "" errorTextLabel.text = errorText ? errorText : ""; |
