aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-08-05 20:29:35 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-08-05 20:56:39 +0200
commit8eee948f07259f9354559c8bac320ec5a4775270 (patch)
tree5513de628c53ecd683f485b63c4eca375897508b
parent3d7090bdbaaaa8706f4bb7bae10de237743f1fc7 (diff)
downloadmonzero-gui-8eee948f07259f9354559c8bac320ec5a4775270.tar.gz
monzero-gui-8eee948f07259f9354559c8bac320ec5a4775270.tar.xz
monzero-gui-8eee948f07259f9354559c8bac320ec5a4775270.zip
Replace SettingsInfo wallet name with wallet path
-rw-r--r--pages/settings/SettingsInfo.qml10
1 files changed, 8 insertions, 2 deletions
diff --git a/pages/settings/SettingsInfo.qml b/pages/settings/SettingsInfo.qml
index 4492babe..8c05ffcb 100644
--- a/pages/settings/SettingsInfo.qml
+++ b/pages/settings/SettingsInfo.qml
@@ -87,13 +87,19 @@ Rectangle {
MoneroComponents.TextBlock {
Layout.fillWidth: true
font.pixelSize: 14
- text: qsTr("Wallet name: ") + translationManager.emptyString
+ text: qsTr("Wallet path: ") + translationManager.emptyString
}
MoneroComponents.TextBlock {
Layout.fillWidth: true
+ Layout.maximumWidth: 320
font.pixelSize: 14
- text: walletName + translationManager.emptyString
+ text: {
+ var wallet_path = walletPath();
+ if(isIOS)
+ wallet_path = moneroAccountsDir + wallet_path;
+ return wallet_path;
+ }
}
Rectangle {