diff options
| author | xiphon <xiphon@protonmail.com> | 2018-09-27 14:01:14 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2018-09-27 14:01:14 +0000 |
| commit | af0f58f72730454dce2636936024ebf9dd76e5a9 (patch) | |
| tree | aa3c6f74c660434182a289652982461af3d7ce03 /js/Utils.js | |
| parent | 3fd37b96a0acbbf54db62f8d84b392ae3e7b85f9 (diff) | |
| download | monzero-gui-af0f58f72730454dce2636936024ebf9dd76e5a9.tar.gz monzero-gui-af0f58f72730454dce2636936024ebf9dd76e5a9.tar.xz monzero-gui-af0f58f72730454dce2636936024ebf9dd76e5a9.zip | |
fixed "Keys" CTRL+Y hotkey
Diffstat (limited to 'js/Utils.js')
| -rw-r--r-- | js/Utils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Utils.js b/js/Utils.js index 56953f50..9a6e4829 100644 --- a/js/Utils.js +++ b/js/Utils.js @@ -37,7 +37,7 @@ function showSeedPage() { currentWallet.setSeedLanguage("English"); } // Load keys page - middlePanel.state = "Keys" + appWindow.showPageRequest("Keys"); } else { informationPopup.title = qsTr("Error") + translationManager.emptyString; informationPopup.text = qsTr("Wrong password"); @@ -48,7 +48,7 @@ function showSeedPage() { } } passwordDialog.onRejectedCallback = function() { - appWindow.showPageRequest("Settings"); + leftPanel.selectItem(middlePanel.state); } passwordDialog.open(); if(isMobile) hideMenu(); |
