From 22450cb68d3e8aa3c088349aa7f74bae6daa18a3 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Sun, 28 Nov 2021 13:33:54 +0100 Subject: [PATCH] main: hide wallet name in wizard titlebar --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();