From 25c100767678891e0cce8a8b036b004e80e4c441 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 27 May 2019 19:27:14 +1000 Subject: [PATCH] Recognise gridColor config as an unsigned type Forgot to commit this earlier --- src/Mod/Draft/Draft.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 35279d98a2..c4887a1ec2 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -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