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;
}
validator: RegExpValidator {
regExp: /^[^\\ \/ \*\?\|\[\]]*$/
regExp: /^[^\\\/\*\?\|\[\]]*$/
}
style: TextFieldStyle{
textColor: UM.Theme.getColor("text_scene");