mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-24 12:39:25 +00:00
Settings: add wallet creation height and log file paths
This commit is contained in:
parent
31f318aaea
commit
f7c883a6c3
1 changed files with 17 additions and 8 deletions
|
@ -473,7 +473,7 @@ Rectangle {
|
||||||
RowLayout {
|
RowLayout {
|
||||||
Label {
|
Label {
|
||||||
color: "#4A4949"
|
color: "#4A4949"
|
||||||
text: qsTr("Version") + translationManager.emptyString
|
text: qsTr("Debug info") + translationManager.emptyString
|
||||||
fontSize: 16
|
fontSize: 16
|
||||||
anchors.topMargin: 30
|
anchors.topMargin: 30
|
||||||
Layout.topMargin: 30
|
Layout.topMargin: 30
|
||||||
|
@ -485,19 +485,28 @@ Rectangle {
|
||||||
color: "#DEDEDE"
|
color: "#DEDEDE"
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
TextBlock {
|
||||||
id: guiVersion
|
|
||||||
Layout.topMargin: 8
|
Layout.topMargin: 8
|
||||||
color: "#4A4949"
|
Layout.fillWidth: true
|
||||||
text: qsTr("GUI version: ") + Version.GUI_VERSION + translationManager.emptyString
|
text: qsTr("GUI version: ") + Version.GUI_VERSION + translationManager.emptyString
|
||||||
fontSize: 16
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
TextBlock {
|
||||||
id: guiMoneroVersion
|
id: guiMoneroVersion
|
||||||
color: "#4A4949"
|
Layout.fillWidth: true
|
||||||
text: qsTr("Embedded Monero version: ") + Version.GUI_MONERO_VERSION + translationManager.emptyString
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue