From 9da52f23870fbfff8eca820ab9cf9a974821b5b9 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Sat, 17 Oct 2020 03:10:33 +0200 Subject: [PATCH] SettingsWallet: disable creating view-only wallet for Ledger --- pages/settings/SettingsWallet.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 29a99f23..a3bcb743 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -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";