Merge pull request #3202

0997b38e SettingsWallet: fix warning (selsta)
This commit is contained in:
Alexander Blair 2020-11-06 05:09:46 -08:00
commit a564abbe6b
No known key found for this signature in database
GPG Key ID: C64552D877C32479

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";