Allow whitespaces in the job name.

Fixes #4530.
This commit is contained in:
Diego Prado Gesto 2018-10-16 13:23:35 +02:00
parent 6eb8b75490
commit 4a0808378b

View File

@ -86,7 +86,7 @@ Item {
printJobTextfield.focus = false; printJobTextfield.focus = false;
} }
validator: RegExpValidator { validator: RegExpValidator {
regExp: /^[^\\ \/ \*\?\|\[\]]*$/ regExp: /^[^\\\/\*\?\|\[\]]*$/
} }
style: TextFieldStyle{ style: TextFieldStyle{
textColor: UM.Theme.getColor("text_scene"); textColor: UM.Theme.getColor("text_scene");