diff options
Diffstat (limited to 'components')
| -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; |
