SettingsWallet: fix warning

This commit is contained in:
selsta 2020-10-31 18:51:08 +01:00
parent 04429e85e6
commit 0997b38e1e
No known key found for this signature in database
GPG key ID: 2EA0A99A8B07AE5E

View file

@ -62,7 +62,7 @@ Rectangle {
iconText: FontAwesome.eye
description: qsTr("Creates a new wallet that can only view and initiate transactions, but requires a spendable wallet to sign transactions before sending.") + translationManager.emptyString
title: qsTr("Create a view-only wallet") + translationManager.emptyString
visible: !appWindow.viewOnly && !currentWallet.isLedger()
visible: !appWindow.viewOnly && (currentWallet ? !currentWallet.isLedger() : true)
onClicked: {
var newPath = currentWallet.path + "_viewonly";