- fixed an issue in panelize Tcl command where the some parameters (spacing_columns and spacing_rows where forced into integers where correct was to keep them as floats)
This commit is contained in:
@@ -135,12 +135,12 @@ class TclCommandPanelize(TclCommand):
|
||||
threaded = False
|
||||
|
||||
if 'spacing_columns' in args:
|
||||
spacing_columns = int(args['spacing_columns'])
|
||||
spacing_columns = float(args['spacing_columns'])
|
||||
else:
|
||||
spacing_columns = 5
|
||||
|
||||
if 'spacing_rows' in args:
|
||||
spacing_rows = int(args['spacing_rows'])
|
||||
spacing_rows = float(args['spacing_rows'])
|
||||
else:
|
||||
spacing_rows = 5
|
||||
|
||||
|
||||
Reference in New Issue
Block a user