- 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:
Marius Stanciu
2022-01-31 21:36:16 +02:00
committed by Marius
parent 28372c1e08
commit 9df8e215bf
2 changed files with 3 additions and 2 deletions

View File

@@ -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