mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
main: hide wallet name in wizard titlebar
This commit is contained in:
parent
c72729fa5d
commit
22450cb68d
1 changed files with 1 additions and 1 deletions
2
main.qml
2
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();
|
||||
|
|
Loading…
Reference in a new issue