Recognise gridColor config as an unsigned type

Forgot to commit this earlier
This commit is contained in:
Dion Moult
2019-05-27 19:27:14 +10:00
committed by Yorik van Havre
parent 687b2778d3
commit 25c1007676

View File

@@ -110,7 +110,7 @@ def getParamType(param):
"renderPolylineWidth","showPlaneTracker","UsePartPrimitives","DiscretizeEllipses",
"showUnit"]:
return "bool"
elif param in ["color","constructioncolor","snapcolor"]:
elif param in ["color","constructioncolor","snapcolor","gridColor"]:
return "unsigned"
else:
return None