From 8eee948f07259f9354559c8bac320ec5a4775270 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Sun, 5 Aug 2018 20:29:35 +0200 Subject: [PATCH] Replace SettingsInfo wallet name with wallet path --- pages/settings/SettingsInfo.qml | 10 ++++++++-- 1 file 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 {