diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-12-02 00:05:42 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-12-02 00:05:42 -0600 |
| commit | ce1c5aebf7ecf9b17da5d34293e4d013141ba88d (patch) | |
| tree | 4b1b52cb701710002c324afad295ec75e635a934 | |
| parent | 7eef4f3364e9e8f191784b55c40d2c40e31c95d6 (diff) | |
| parent | 22450cb68d3e8aa3c088349aa7f74bae6daa18a3 (diff) | |
| download | monzero-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.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(); |
