aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-12-02 00:07:03 -0600
committerluigi1111 <luigi1111w@gmail.com>2021-12-02 00:07:03 -0600
commit0bebf412fdfbb006604bc359f8ed48e2bd0ee180 (patch)
treeded544e7390133bec6986d848424a21ee6465f18
parentce1c5aebf7ecf9b17da5d34293e4d013141ba88d (diff)
parentb8b96ee71986d912496d62240d90e6a33b9b4a29 (diff)
downloadmonzero-gui-0bebf412fdfbb006604bc359f8ed48e2bd0ee180.tar.gz
monzero-gui-0bebf412fdfbb006604bc359f8ed48e2bd0ee180.tar.xz
monzero-gui-0bebf412fdfbb006604bc359f8ed48e2bd0ee180.zip
Merge pull request #3760
b8b96ee PasswordDialog: display wizard title bar when returning to wizard after canceling password dialog (rating89us)
-rw-r--r--components/PasswordDialog.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index 977ec3a4..b2c815f3 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -108,7 +108,11 @@ Item {
leftPanel.enabled = true
middlePanel.enabled = true
wizard.enabled = true
- titleBar.state = "default"
+ if (rootItem.state == "wizard") {
+ titleBar.state = "essentials"
+ } else {
+ titleBar.state = "default"
+ }
root.visible = false;
appWindow.hideBalanceForced = false;