- aperture keys in the gerber 'tools' dictionary are now stored as integers instead of strings as before; need to check the application especially the Gerber Editor
- fixed issues in Gerber Editor (using the '0' insteadd of 'REG' type for apertures)
This commit is contained in:
@@ -46,7 +46,7 @@ class TclCommandNew(TclCommand):
|
||||
|
||||
reset_tcl = True
|
||||
if 'reset' in args:
|
||||
if args['reset'] and (args['reset'] == '0' or args['reset'].lower() == 'false'):
|
||||
if args['reset'] and (args['reset'] == 0 or args['reset'].lower() == 'false'):
|
||||
reset_tcl = False
|
||||
|
||||
self.app.f_handlers.on_file_new_project(cli=True, reset_tcl=reset_tcl)
|
||||
|
||||
Reference in New Issue
Block a user