- in Tool Cutout, when using the Thin Gaps feature, the resulting geometry loose the extra color by toggling tool plot in Geometry UI Tools Table- fixed
This commit is contained in:
@@ -10,6 +10,7 @@ CHANGELOG for FlatCAM beta
|
|||||||
27.08.2020
|
27.08.2020
|
||||||
|
|
||||||
- fixed the Tcl commands AddCircle, AddPolygon, AddPolyline and AddRectangle to have stored bounds therefore making them movable/selectable on canvas
|
- fixed the Tcl commands AddCircle, AddPolygon, AddPolyline and AddRectangle to have stored bounds therefore making them movable/selectable on canvas
|
||||||
|
- in Tool Cutout, when using the Thin Gaps feature, the resulting geometry loose the extra color by toggling tool plot in Geometry UI Tools Table- fixed
|
||||||
|
|
||||||
26.08.2020
|
26.08.2020
|
||||||
|
|
||||||
|
|||||||
@@ -2843,10 +2843,10 @@ class GeometryObject(FlatCAMObj, Geometry):
|
|||||||
break
|
break
|
||||||
|
|
||||||
if self.ui.geo_tools_table.cellWidget(check_row, 6).isChecked():
|
if self.ui.geo_tools_table.cellWidget(check_row, 6).isChecked():
|
||||||
if 'override' in self.tools[tooluid_key]['data']:
|
try:
|
||||||
self.plot_element(element=solid_geometry, visible=True,
|
color = self.tools[tooluid_key]['data']['override_color']
|
||||||
color=self.tools[tooluid_key]['data']['override'])
|
self.plot_element(element=solid_geometry, visible=True, color=color)
|
||||||
else:
|
except KeyError:
|
||||||
self.plot_element(element=solid_geometry, visible=True)
|
self.plot_element(element=solid_geometry, visible=True)
|
||||||
self.shapes.redraw()
|
self.shapes.redraw()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user