Don't allow spaces, commas and other illegal chars in the address

CURA-2384
This commit is contained in:
fieldOfView 2016-09-29 14:46:31 +02:00
parent ea9ba87fa4
commit b25b92a81b

View File

@ -302,6 +302,10 @@ Cura.MachineAction
id: addressField
width: parent.width
maximumLength: 40
validator: RegExpValidator
{
regExp: /[a-zA-Z0-9\.\-\_]*/
}
}
}