mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 19:32:03 +02:00
SettingsWallet: fix warning
This commit is contained in:
parent
04429e85e6
commit
0997b38e1e
@ -62,7 +62,7 @@ Rectangle {
|
|||||||
iconText: FontAwesome.eye
|
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
|
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
|
title: qsTr("Create a view-only wallet") + translationManager.emptyString
|
||||||
visible: !appWindow.viewOnly && !currentWallet.isLedger()
|
visible: !appWindow.viewOnly && (currentWallet ? !currentWallet.isLedger() : true)
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
var newPath = currentWallet.path + "_viewonly";
|
var newPath = currentWallet.path + "_viewonly";
|
||||||
|
Loading…
Reference in New Issue
Block a user