diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-12-02 00:07:03 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-12-02 00:07:03 -0600 |
| commit | 0bebf412fdfbb006604bc359f8ed48e2bd0ee180 (patch) | |
| tree | ded544e7390133bec6986d848424a21ee6465f18 /components/PasswordDialog.qml | |
| parent | ce1c5aebf7ecf9b17da5d34293e4d013141ba88d (diff) | |
| parent | b8b96ee71986d912496d62240d90e6a33b9b4a29 (diff) | |
| download | monzero-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)
Diffstat (limited to 'components/PasswordDialog.qml')
| -rw-r--r-- | components/PasswordDialog.qml | 6 |
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; |
