diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-11-28 22:54:51 +0100 |
|---|---|---|
| committer | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-11-29 20:16:23 +0100 |
| commit | 6e249300263960d12e54c8ce71b29cbfcb4fec90 (patch) | |
| tree | c15d4a46c2f8c15039c719ea303600977396bbde /wizard | |
| parent | c72729fa5db0d018b0929866fb847ac99e05086f (diff) | |
| download | monzero-gui-6e249300263960d12e54c8ce71b29cbfcb4fec90.tar.gz monzero-gui-6e249300263960d12e54c8ce71b29cbfcb4fec90.tar.xz monzero-gui-6e249300263960d12e54c8ce71b29cbfcb4fec90.zip | |
WizardOpenWallet1: new wallet icons; hide "Mainnet" label in simple mode
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardOpenWallet1.qml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/wizard/WizardOpenWallet1.qml b/wizard/WizardOpenWallet1.qml index 4e645cf1..d2f52bd7 100644 --- a/wizard/WizardOpenWallet1.qml +++ b/wizard/WizardOpenWallet1.qml @@ -163,7 +163,7 @@ Rectangle { return parent.width / 3 } property string networkType: { - if(networktype === 0) return qsTr("Mainnet"); + if(networktype === 0 && appWindow.walletMode >= 2) return qsTr("Mainnet"); else if(networktype === 1) return qsTr("Testnet"); else if(networktype === 2) return qsTr("Stagenet"); return ""; @@ -218,7 +218,14 @@ Rectangle { anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter fillMode: Image.PreserveAspectFit - source: "qrc:///images/open-wallet-from-file.png" + source: { + if (networktype === 0 && fileName.toLowerCase().includes("viewonly")) return "qrc:///images/open-wallet-from-file-view-only.png"; + else if (networktype === 0 && fileName.toLowerCase().includes("trezor")) return "qrc:///images/open-wallet-from-file-trezor.png"; + else if (networktype === 0 && fileName.toLowerCase().includes("ledger")) return "qrc:///images/restore-wallet-from-hardware.png"; + else if (networktype === 0) return "qrc:///images/open-wallet-from-file-mainnet.png"; + else if (networktype === 1) return "qrc:///images/open-wallet-from-file-testnet.png"; + else if (networktype === 2) return "qrc:///images/open-wallet-from-file-stagenet.png"; + } visible: { if(!isOpenGL) return true; if(MoneroComponents.Style.blackTheme) return true; @@ -263,12 +270,12 @@ Rectangle { wrapMode: Text.WordWrap leftPadding: 0 - topPadding: networktype !== -1 ? 8 : 4 + topPadding: networkType !== "" ? 8 : 4 bottomPadding: 0 } Text { - visible: networktype !== -1 + visible: networkType !== "" Layout.preferredHeight: 24 Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter Layout.fillWidth: true |
