Skip to content

Commit

Permalink
Draft: fixed precision problem - fixes #1940
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Sep 4, 2015
1 parent 91b2506 commit 989a5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/DraftVecUtils.py
Expand Up @@ -32,7 +32,7 @@

params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft")
def precision():
return params.GetInt("precision")
return params.GetInt("precision",6)

def typecheck (args_and_types, name="?"):
for v,t in args_and_types:
Expand Down

0 comments on commit 989a5fa

Please sign in to comment.