1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-02 21:26:24 +01:00

main: hide wallet name in wizard titlebar

This commit is contained in:
rating89us 2021-11-28 13:33:54 +01:00 committed by GitHub
parent c72729fa5d
commit 22450cb68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();