- fixed some issues in panelize and cncjob Tcl commands
- reversed the mirroring axis in the `mirror` Tcl command to be consistent with the action in GUI
This commit is contained in:
@@ -106,6 +106,8 @@ class TclCommandMirror(TclCommandSignaled):
|
||||
if 'axis' in args:
|
||||
try:
|
||||
axis = args['axis'].upper()
|
||||
# fix so the Tcl command works just like in GUI
|
||||
axis = 'X' if axis == 'Y' else 'Y'
|
||||
except KeyError:
|
||||
axis = 'Y'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user