diff options
| author | User <zipper@jacobzipper.com> | 2017-12-21 15:40:47 -0500 |
|---|---|---|
| committer | User <zipper@jacobzipper.com> | 2017-12-21 15:40:47 -0500 |
| commit | c3208785cfdc73542226690d9aeb233d91abcfa5 (patch) | |
| tree | 6cf68225a9e17b93ef3a6240bdaa651b77f229ba | |
| parent | 9d22b6ab4da8f310b629f989233c517eb51d301d (diff) | |
| download | monzero-gui-c3208785cfdc73542226690d9aeb233d91abcfa5.tar.gz monzero-gui-c3208785cfdc73542226690d9aeb233d91abcfa5.tar.xz monzero-gui-c3208785cfdc73542226690d9aeb233d91abcfa5.zip | |
put wallet name in debug info
| -rw-r--r-- | pages/Settings.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml index a83b53ee..9b6d87a7 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -567,6 +567,10 @@ Rectangle { } 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 } } |
