diff options
| author | selsta <selsta@sent.at> | 2019-08-06 22:48:15 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-08-07 14:19:56 +0200 |
| commit | 18f7a6a694773e0a866e701d69e442affebd786b (patch) | |
| tree | 13f10fbeac3450256076a4152fca1ea0c18c8878 /pages | |
| parent | 55b4425c5db5d25e72dc9089d9ec5aac4f2c5ddf (diff) | |
| download | monzero-gui-18f7a6a694773e0a866e701d69e442affebd786b.tar.gz monzero-gui-18f7a6a694773e0a866e701d69e442affebd786b.tar.xz monzero-gui-18f7a6a694773e0a866e701d69e442affebd786b.zip | |
Receive: fix warning
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/Receive.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/Receive.qml b/pages/Receive.qml index fd03803c..223c9078 100644 --- a/pages/Receive.qml +++ b/pages/Receive.qml @@ -316,7 +316,7 @@ Rectangle { label.font.family: FontAwesome.fontFamily fontSize: 24 width: 36 - visible: appWindow.currentWallet && appWindow.currentWallet.isHwBacked() + visible: appWindow.currentWallet ? appWindow.currentWallet.isHwBacked() : false onClicked: { appWindow.currentWallet.deviceShowAddressAsync( appWindow.currentWallet.currentSubaddressAccount, |
