From 212c8dd054918e50abf7b1c8d5676d465a6f09e9 Mon Sep 17 00:00:00 2001 From: peli-pro <55572025+peli-pro@users.noreply.github.com> Date: Thu, 17 Oct 2019 14:25:36 +0200 Subject: [PATCH] Warning added that balance reflects only incoming transactions for view-only wallets --- pages/Transfer.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 3e93339c..4216a3ce 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -756,7 +756,8 @@ Rectangle { // Currently opened wallet is not view-only if(appWindow.viewOnly){ - root.sendButtonWarning = qsTr("Wallet is view-only and sends are not possible.") + translationManager.emptyString; + root.sendButtonWarning = qsTr("Wallet is view-only and sends are not possible. Unless key images are imported, " + + "the balance reflects only incoming but not outgoing transactions.") + translationManager.emptyString; return false; }