aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-08-24 11:31:56 +0200
committerJaquee <jaquee.monero@gmail.com>2017-08-24 12:09:00 +0200
commitf7c883a6c318583219dace5f88eaef0cf4bda81b (patch)
treea817a83aec9a56f321767734ea2c53b646828b99
parent31f318aaeaccefd36ba86b032b2a64f27510c89e (diff)
downloadmonzero-gui-f7c883a6c318583219dace5f88eaef0cf4bda81b.tar.gz
monzero-gui-f7c883a6c318583219dace5f88eaef0cf4bda81b.tar.xz
monzero-gui-f7c883a6c318583219dace5f88eaef0cf4bda81b.zip
Settings: add wallet creation height and log file paths
-rw-r--r--pages/Settings.qml25
1 files changed, 17 insertions, 8 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml
index 5a908c0c..8173aba5 100644
--- a/pages/Settings.qml
+++ b/pages/Settings.qml
@@ -473,7 +473,7 @@ Rectangle {
RowLayout {
Label {
color: "#4A4949"
- text: qsTr("Version") + translationManager.emptyString
+ text: qsTr("Debug info") + translationManager.emptyString
fontSize: 16
anchors.topMargin: 30
Layout.topMargin: 30
@@ -485,19 +485,28 @@ Rectangle {
color: "#DEDEDE"
}
- Label {
- id: guiVersion
+ TextBlock {
Layout.topMargin: 8
- color: "#4A4949"
+ Layout.fillWidth: true
text: qsTr("GUI version: ") + Version.GUI_VERSION + translationManager.emptyString
- fontSize: 16
}
- Label {
+ TextBlock {
id: guiMoneroVersion
- color: "#4A4949"
+ Layout.fillWidth: true
text: qsTr("Embedded Monero version: ") + Version.GUI_MONERO_VERSION + translationManager.emptyString
- fontSize: 16
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Wallet creation height: ") + currentWallet.walletCreationHeight + translationManager.emptyString
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Wallet log path: ") + currentWallet.walletLogPath + translationManager.emptyString
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Daemon log path: ") + currentWallet.daemonLogPath + translationManager.emptyString
}
}