aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-05-11 16:57:43 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-05-11 16:57:43 -0500
commit4c2640d4b3519cede86f4392c4e3a29d6ee5a377 (patch)
tree12ac129b7edb7a8252b7027af52ca3088c60796f /pages
parentadc1db585a9e0f9dee5876bd91e832c654d10a67 (diff)
parent15155f2db8d20d09c68070f39d583fa263b7fe15 (diff)
downloadmonzero-gui-4c2640d4b3519cede86f4392c4e3a29d6ee5a377.tar.gz
monzero-gui-4c2640d4b3519cede86f4392c4e3a29d6ee5a377.tar.xz
monzero-gui-4c2640d4b3519cede86f4392c4e3a29d6ee5a377.zip
Merge pull request #1358
341ac18 log qt/qml to easylogging, add --log-file cmdline option 92582a9 delete unused WalletManager functions c9daab7 don't use cmdline arguments as daemon arguments 7283fe4 use qWarning/qCritical on QrCodeScanner info/errors 15155f2 print logs on console
Diffstat (limited to 'pages')
-rw-r--r--pages/Settings.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml
index be28e18c..cc2d2a33 100644
--- a/pages/Settings.qml
+++ b/pages/Settings.qml
@@ -730,13 +730,13 @@ Rectangle {
TextBlock {
Layout.fillWidth: true
font.pixelSize: 14
- text: (!currentWallet) ? "" : qsTr("Wallet log path: ") + translationManager.emptyString
+ text: qsTr("Wallet log path: ") + translationManager.emptyString
}
TextBlock {
Layout.fillWidth: true
font.pixelSize: 14
- text: currentWallet.walletLogPath + translationManager.emptyString
+ text: walletLogPath
}
}
}