- fixed the project context save functionality to work in the new program configuration

- updated Turkish translation (by Mehmet Kaya)
This commit is contained in:
Marius Stanciu
2020-11-03 15:01:07 +02:00
committed by Marius
parent 5170505f53
commit 3083630e5f
4 changed files with 23 additions and 46 deletions

View File

@@ -7107,17 +7107,17 @@ class App(QtCore.QObject):
obj = self.collection.get_active()
if type(obj) == GeometryObject:
self.on_file_exportdxf()
self.f_handlers.on_file_exportdxf()
elif type(obj) == ExcellonObject:
self.on_file_saveexcellon()
self.f_handlers.on_file_saveexcellon()
elif type(obj) == CNCJobObject:
obj.on_exportgcode_button_click()
elif type(obj) == GerberObject:
self.on_file_savegerber()
self.f_handlers.on_file_savegerber()
elif type(obj) == ScriptObject:
self.on_file_savescript()
self.f_handlers.on_file_savescript()
elif type(obj) == DocumentObject:
self.on_file_savedocument()
self.f_handlers.on_file_savedocument()
def obj_move(self):
"""