Merge branch 'develop' into feature/pygui-multi-canvas

This commit is contained in:
Blake Harnden 2021-01-07 15:28:05 -08:00
commit bc540e0669

View file

@ -107,7 +107,7 @@ class NodeNameEntry(ValidationEntry):
if len(s) == 0:
return True
for x in s:
if not x.isalnum() and x != "_":
if not x.isalnum() and x != "-":
return False
return True