- added a minor change to the ListSys Tcl command

This commit is contained in:
Marius Stanciu 2020-04-06 19:04:32 +03:00 committed by Marius
parent 69b39e2937
commit b11ac0ca4d
2 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing.
6.04.2020
- added key shortcuts (arrow up/down) that will select the objects in the Project tab if the focus is in that tab
- added a minor change to the ListSys Tcl command
5.04.2020

View File

@ -60,4 +60,6 @@ class TclCommandListSys(TclCommand):
argument = args['selection']
return str([k for k in self.app.defaults.keys() if str(k).startswith(str(argument))])
else:
return str([*self.app.defaults])
ret_val = list(self.app.defaults.keys())
return str(ret_val)
# return str([*self.app.defaults])