aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
Diffstat (limited to 'wizard')
-rw-r--r--wizard/WizardMain.qml8
1 files changed, 0 insertions, 8 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml
index 43e2d5e0..05a4099e 100644
--- a/wizard/WizardMain.qml
+++ b/wizard/WizardMain.qml
@@ -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;
}