mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
Merge pull request #2988
2522ff1
Prevent textbox from turning active when window is not active. Fixes #2924 (xmrdsc)
This commit is contained in:
commit
11fd19e0f8
1 changed files with 2 additions and 1 deletions
|
@ -62,7 +62,8 @@ Item {
|
|||
capsLockTextLabel.visible = oshelper.isCapsLock();
|
||||
passwordInput1.reset();
|
||||
passwordInput2.reset();
|
||||
passwordInput1.input.forceActiveFocus();
|
||||
if(appWindow.active)
|
||||
passwordInput1.input.forceActiveFocus();
|
||||
root.walletName = walletName ? walletName : ""
|
||||
errorTextLabel.text = errorText ? errorText : "";
|
||||
leftPanel.enabled = false
|
||||
|
|
Loading…
Reference in a new issue