diff options
| author | xiphon <xiphon@protonmail.com> | 2018-07-28 12:00:41 +0300 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2018-07-28 12:00:41 +0300 |
| commit | 045189553eaab9a1b122144038f9b4940dd77add (patch) | |
| tree | 96fe4ff8e0be54ab33414dd674a6e0d0ffb105db | |
| parent | 1107daab98ccf39a259bf1979c751e18cb92ee8b (diff) | |
| download | monzero-gui-045189553eaab9a1b122144038f9b4940dd77add.tar.gz monzero-gui-045189553eaab9a1b122144038f9b4940dd77add.tar.xz monzero-gui-045189553eaab9a1b122144038f9b4940dd77add.zip | |
fixed: disable password dialog hotkeys handling when it is hidden
| -rw-r--r-- | components/PasswordDialog.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index e8e39e4c..8e75193d 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -125,6 +125,7 @@ Item { } } + Keys.enabled: root.visible Keys.onReturnPressed: { root.close() root.accepted() |
