mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 04:45:00 +00:00
Merge pull request #3160
9da52f23
SettingsWallet: disable creating view-only wallet for Ledger (rating89us)
This commit is contained in:
commit
fdff5f68dd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
visible: !appWindow.viewOnly && !currentWallet.isLedger()
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
var newPath = currentWallet.path + "_viewonly";
|
var newPath = currentWallet.path + "_viewonly";
|
||||||
|
|
Loading…
Reference in a new issue