From c3208785cfdc73542226690d9aeb233d91abcfa5 Mon Sep 17 00:00:00 2001 From: User Date: Thu, 21 Dec 2017 15:40:47 -0500 Subject: [PATCH] put wallet name in debug info --- pages/Settings.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/Settings.qml b/pages/Settings.qml index a83b53ee..9b6d87a7 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -565,6 +565,10 @@ Rectangle { Layout.fillWidth: true text: (typeof currentWallet == "undefined") ? "" : qsTr("Wallet log path: ") + currentWallet.walletLogPath + translationManager.emptyString } + TextBlock { + Layout.fillWidth: true + text: qsTr("Wallet Name: ") + walletName + translationManager.emptyString + } TextBlock { Layout.fillWidth: true text: (typeof currentWallet == "undefined") ? "" : qsTr("Daemon log path: ") + currentWallet.daemonLogPath + translationManager.emptyString