Merge pull request #1141

5d2d6ad UTF-8 support for filenames and paths under Windows
This commit is contained in:
luigi1111
2018-03-13 23:37:33 -04:00
2 changed files with 7 additions and 8 deletions

View File

@@ -185,14 +185,6 @@ ColumnLayout {
return false;
}
// Don't allow non ascii characters in path on windows platforms until supported by Wallet2
if (isWindows) {
if (!isAscii(path)) {
walletErrorDialog.text = qsTr("Non-ASCII characters are not allowed in wallet path or account name") + translationManager.emptyString;
walletErrorDialog.open();
return false;
}
}
return true;
}