From f5c5df7b677e10c78bddb2defa7b392bfe42696a Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 28 Jul 2020 17:42:59 +0000 Subject: main: accountsDir runtime configuration support --- wizard/WizardController.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wizard/WizardController.qml') diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index b38d079f..e39a29de 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -308,7 +308,7 @@ Rectangle { FileDialog { id: fileDialog title: qsTr("Please choose a file") + translationManager.emptyString - folder: "file://" + moneroAccountsDir + folder: "file://" + appWindow.accountsDir nameFilters: [ "Wallet files (*.keys)"] sidebarVisible: false @@ -382,7 +382,7 @@ Rectangle { }; if (isIOS) { - new_wallet_filename = moneroAccountsDir + new_wallet_filename; + new_wallet_filename = appWindow.accountsDir + new_wallet_filename; } console.log("saving new wallet to", new_wallet_filename); wizardController.m_wallet.storeAsync(handler, new_wallet_filename); @@ -540,7 +540,7 @@ Rectangle { persistentSettings.wallet_path = fn; if(isIOS) - persistentSettings.wallet_path = persistentSettings.wallet_path.replace(moneroAccountsDir, ""); + persistentSettings.wallet_path = persistentSettings.wallet_path.replace(appWindow.accountsDir, ""); appWindow.openWallet(); } -- cgit v1.2.3