aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-12-02 00:05:42 -0600
committerluigi1111 <luigi1111w@gmail.com>2021-12-02 00:05:42 -0600
commitce1c5aebf7ecf9b17da5d34293e4d013141ba88d (patch)
tree4b1b52cb701710002c324afad295ec75e635a934
parent7eef4f3364e9e8f191784b55c40d2c40e31c95d6 (diff)
parent22450cb68d3e8aa3c088349aa7f74bae6daa18a3 (diff)
downloadmonzero-gui-ce1c5aebf7ecf9b17da5d34293e4d013141ba88d.tar.gz
monzero-gui-ce1c5aebf7ecf9b17da5d34293e4d013141ba88d.tar.xz
monzero-gui-ce1c5aebf7ecf9b17da5d34293e4d013141ba88d.zip
Merge pull request #3759
22450cb main: hide wallet name in wizard titlebar (rating89us)
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index e736487e..f2e79827 100644
--- a/main.qml
+++ b/main.qml
@@ -1898,7 +1898,7 @@ ApplicationWindow {
TitleBar {
id: titleBar
visible: persistentSettings.customDecorations && middlePanel.state !== "Merchant"
- walletName: persistentSettings.displayWalletNameInTitleBar ? appWindow.walletName : ""
+ walletName: persistentSettings.displayWalletNameInTitleBar && rootItem.state != "wizard" ? appWindow.walletName : ""
anchors.left: parent.left
anchors.right: parent.right
onCloseClicked: appWindow.close();