- allow the usage of lowercase units names (like mm or in) when used in

the Tcl command set_sys
This commit is contained in:
Marius Stanciu 2018-05-27 14:03:19 +03:00
parent eb0637c5bb
commit 3fae21622a
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ class TclCommandSetSys(TclCommand.TclCommand):
"false": False,
"False": False,
"true": True,
"True": True
"True": True,
"mm": "MM",
"in": "IN"
}
if param in self.app.defaults: