diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-01-11 17:02:24 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-01-11 17:02:24 -0500 |
| commit | 3b069ec04908f76b8244a96124ce9619c0b0300d (patch) | |
| tree | 510da8281ddbccd0b21775df4293c7508268880d | |
| parent | d52486dfaba8acea26440765ce35eff9347b9aca (diff) | |
| parent | c3208785cfdc73542226690d9aeb233d91abcfa5 (diff) | |
| download | monzero-gui-3b069ec04908f76b8244a96124ce9619c0b0300d.tar.gz monzero-gui-3b069ec04908f76b8244a96124ce9619c0b0300d.tar.xz monzero-gui-3b069ec04908f76b8244a96124ce9619c0b0300d.zip | |
Merge pull request #1021
c320878 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 61844b4f..18f431d4 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -593,6 +593,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 } } |
