1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00

Merge pull request #3160

9da52f23 SettingsWallet: disable creating view-only wallet for Ledger (rating89us)
This commit is contained in:
Alexander Blair 2020-10-28 00:37:28 -07:00
commit fdff5f68dd
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
visible: !appWindow.viewOnly && !currentWallet.isLedger()
onClicked: {
var newPath = currentWallet.path + "_viewonly";