- fixed an issue for importing DXF as Geometry when the DXF geometry is a single line
- updated the convert_any2geo() method such that resulting geometry objects have the tools attribute required in the newer versions of the app
This commit is contained in:
committed by
Marius Stanciu
parent
ad5ae43ab4
commit
2545da79b5
@@ -142,12 +142,13 @@ class AppObject(QtCore.QObject):
|
||||
obj.options[option] = self.app.options[option]
|
||||
if kind == 'gerber':
|
||||
for option in self.app.options:
|
||||
if option.find('tools_iso_') == 0:
|
||||
if option.find('tools_iso_') == 0 or option.find('tools_mill_') == 0:
|
||||
obj.options[option] = self.app.options[option]
|
||||
if kind == 'geometry':
|
||||
for option in self.app.options:
|
||||
if option.find('tools_mill_') == 0:
|
||||
obj.options[option] = self.app.options[option]
|
||||
|
||||
# ############################################################################################################
|
||||
# ############################################################################################################
|
||||
|
||||
|
||||
Reference in New Issue
Block a user