diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2016-11-29 17:14:11 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-11-29 17:14:11 +0100 |
| commit | abd5c685af26a1ca44a2437f69f3aa011564298a (patch) | |
| tree | 64654f4dda669ed8403ae87874b2795503470cc7 /wizard/WizardCreateWallet.qml | |
| parent | 1a610db4318ca9b3d3d06297818dce5c9cd45ede (diff) | |
| download | monzero-gui-abd5c685af26a1ca44a2437f69f3aa011564298a.tar.gz monzero-gui-abd5c685af26a1ca44a2437f69f3aa011564298a.tar.xz monzero-gui-abd5c685af26a1ca44a2437f69f3aa011564298a.zip | |
Windows: don't allow non-ascii characters in path
Diffstat (limited to 'wizard/WizardCreateWallet.qml')
| -rw-r--r-- | wizard/WizardCreateWallet.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardCreateWallet.qml b/wizard/WizardCreateWallet.qml index bef91bc2..11d91e24 100644 --- a/wizard/WizardCreateWallet.qml +++ b/wizard/WizardCreateWallet.qml @@ -55,7 +55,7 @@ Item { settingsObject['words'] = uiItem.wordsTexttext settingsObject['wallet_path'] = uiItem.walletPath var walletFullPath = wizard.createWalletPath(uiItem.walletPath,uiItem.accountNameText); - return !wizard.walletExists(walletFullPath); + return wizard.walletPathValid(walletFullPath); } function checkNextButton() { |
