diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2020-01-27 10:07:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-27 10:07:07 +0100 |
| commit | 7ebf50dc6f2461ba69154992cf6b3bf2071f5cc3 (patch) | |
| tree | cddd401863b91a19e152654d8f409850e74b4695 /pages | |
| parent | 39aa6e76b145ce73824393687c33632d5179e1f7 (diff) | |
| download | monzero-gui-7ebf50dc6f2461ba69154992cf6b3bf2071f5cc3.tar.gz monzero-gui-7ebf50dc6f2461ba69154992cf6b3bf2071f5cc3.tar.xz monzero-gui-7ebf50dc6f2461ba69154992cf6b3bf2071f5cc3.zip | |
Keys: stop displaying hw device msg in view-only wallets
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/Keys.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/Keys.qml b/pages/Keys.qml index 1af37b2f..ed0837fe 100644 --- a/pages/Keys.qml +++ b/pages/Keys.qml @@ -281,7 +281,7 @@ Rectangle { secretSpendKey.text = qsTr("(View Only Wallet - No secret spend key available)") + translationManager.emptyString } // hardware device wallet - if(currentWallet.seed === "") { + if(appWindow.currentWallet.isHwBacked() === true) { showFullQr.visible = false viewOnlyQRCode.visible = true showViewOnlyQr.visible = false |
