- updated Tcl commands to make use of either 0 or False for False value or 1 or True for True in case of a parameter with type Bool
This commit is contained in:
@@ -49,6 +49,6 @@ class TclCommandOffset(TclCommand):
|
||||
"""
|
||||
|
||||
name = args['name']
|
||||
x, y = args['x'], args['y']
|
||||
x, y = float(args['x']), float(args['y'])
|
||||
|
||||
self.app.collection.get_by_name(name).offset((x, y))
|
||||
|
||||
Reference in New Issue
Block a user