aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardWalletInput.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-04-28 15:16:57 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-04-28 15:16:57 -0500
commit1b7844ec345033b7809ef69ad941bd8a4a3986fb (patch)
treea3f1646f51bc47502f1ee764add39bad9f57f0d0 /wizard/WizardWalletInput.qml
parent8f63e8870f6ef859f3f1500653a028aca2278274 (diff)
parenta99eef68f5e621f78df3b8f54e0b44a6178437f5 (diff)
downloadmonzero-gui-1b7844ec345033b7809ef69ad941bd8a4a3986fb.tar.gz
monzero-gui-1b7844ec345033b7809ef69ad941bd8a4a3986fb.tar.xz
monzero-gui-1b7844ec345033b7809ef69ad941bd8a4a3986fb.zip
Merge pull request #2854
a99eef6 always use native directory separators in paths (xiphon)
Diffstat (limited to 'wizard/WizardWalletInput.qml')
-rw-r--r--wizard/WizardWalletInput.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardWalletInput.qml b/wizard/WizardWalletInput.qml
index e0d705cf..64356c89 100644
--- a/wizard/WizardWalletInput.qml
+++ b/wizard/WizardWalletInput.qml
@@ -55,7 +55,7 @@ GridLayout {
function reset() {
walletName.error = !walletName.verify();
walletLocation.error = walletLocation.text === "";
- walletLocation.text = moneroAccountsDir + "/";
+ walletLocation.text = moneroAccountsDir;
walletName.text = defaultAccountName;
}