- some fixes in remembering the last save location and last open location

This commit is contained in:
Marius Stanciu
2022-02-22 15:16:03 +02:00
committed by Marius
parent 0d62c291ea
commit 1df2570668
9 changed files with 29 additions and 28 deletions

View File

@@ -48,5 +48,5 @@ class TclCommandExportGerber(TclCommand):
:return:
"""
if 'filename' not in args:
args['filename'] = self.app.options["global_last_save_folder"] + '/' + args['name']
args['filename'] = self.app.defaults["global_last_save_folder"] + '/' + args['name']
self.app.f_handlers.export_gerber(use_thread=False, **args)