- removed the forcing of multigeo geometry usage when creating CNCJobs
This commit is contained in:
@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
|
|||||||
|
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
|
11.11.2020
|
||||||
|
|
||||||
|
- removed the forcing of multigeo geometry usage when creating CNCJobs
|
||||||
|
|
||||||
10.11.2020
|
10.11.2020
|
||||||
|
|
||||||
- renamed the Extract Drills Tool to Extract Tool and enhanced the tool to extract a Soldermask Gerber from a given Gerber object
|
- renamed the Extract Drills Tool to Extract Tool and enhanced the tool to extract a Soldermask Gerber from a given Gerber object
|
||||||
|
|||||||
@@ -2103,7 +2103,8 @@ class GeometryObject(FlatCAMObj, Geometry):
|
|||||||
self.app.inform.emit(msg)
|
self.app.inform.emit(msg)
|
||||||
return
|
return
|
||||||
|
|
||||||
self.multigeo = True
|
# force everything as MULTI-GEO
|
||||||
|
# self.multigeo = True
|
||||||
|
|
||||||
# Object initialization function for app.app_obj.new_object()
|
# Object initialization function for app.app_obj.new_object()
|
||||||
# RUNNING ON SEPARATE THREAD!
|
# RUNNING ON SEPARATE THREAD!
|
||||||
|
|||||||
@@ -4240,13 +4240,11 @@ class App(QtCore.QObject):
|
|||||||
obj = self.collection.get_active()
|
obj = self.collection.get_active()
|
||||||
|
|
||||||
if obj is None:
|
if obj is None:
|
||||||
self.inform.emit('[ERROR_NOTCL] %s' %
|
self.inform.emit('[ERROR_NOTCL] %s' % _("Failed. Select a Geometry Object and try again."))
|
||||||
_("Failed. Select a Geometry Object and try again."))
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if not isinstance(obj, GeometryObject):
|
if not isinstance(obj, GeometryObject):
|
||||||
self.inform.emit('[ERROR_NOTCL] %s: %s' %
|
self.inform.emit('[ERROR_NOTCL] %s: %s' % (_("Expected a GeometryObject, got"), type(obj)))
|
||||||
(_("Expected a GeometryObject, got"), type(obj)))
|
|
||||||
return
|
return
|
||||||
|
|
||||||
obj.multigeo = False
|
obj.multigeo = False
|
||||||
@@ -4260,8 +4258,7 @@ class App(QtCore.QObject):
|
|||||||
|
|
||||||
self.should_we_save = True
|
self.should_we_save = True
|
||||||
|
|
||||||
self.inform.emit('[success] %s' %
|
self.inform.emit('[success] %s' % _("A Geometry object was converted to SingleGeo type."))
|
||||||
_("A Geometry object was converted to SingleGeo type."))
|
|
||||||
|
|
||||||
def on_defaults_dict_change(self, field):
|
def on_defaults_dict_change(self, field):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user