diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-11-28 13:33:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 13:33:54 +0100 |
| commit | 22450cb68d3e8aa3c088349aa7f74bae6daa18a3 (patch) | |
| tree | 58f22ef403a6dc5c2b3e9828df3f19c26de62c78 | |
| parent | c72729fa5db0d018b0929866fb847ac99e05086f (diff) | |
| download | monzero-gui-22450cb68d3e8aa3c088349aa7f74bae6daa18a3.tar.gz monzero-gui-22450cb68d3e8aa3c088349aa7f74bae6daa18a3.tar.xz monzero-gui-22450cb68d3e8aa3c088349aa7f74bae6daa18a3.zip | |
main: hide wallet name in wizard titlebar
| -rw-r--r-- | main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |
