- in Geometry Editor by selecting a shape with a selection shape, that object was added multiple times (one per each selection) to the selected list, which is not intended. Bug fixed.
This commit is contained in:
@@ -1220,6 +1220,7 @@ class TransformEditorTool(FlatCAMTool):
|
|||||||
for sha in shape_list:
|
for sha in shape_list:
|
||||||
self.draw_app.add_shape(sha)
|
self.draw_app.add_shape(sha)
|
||||||
|
|
||||||
|
shape_list[:] = []
|
||||||
self.draw_app.delete_selected()
|
self.draw_app.delete_selected()
|
||||||
# self.draw_app.complete = True
|
# self.draw_app.complete = True
|
||||||
self.draw_app.replot()
|
self.draw_app.replot()
|
||||||
@@ -3860,7 +3861,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
|
|||||||
# add the object to the selected shapes
|
# add the object to the selected shapes
|
||||||
self.selected.append(obj)
|
self.selected.append(obj)
|
||||||
else:
|
else:
|
||||||
self.selected.append(obj)
|
if obj not in self.selected:
|
||||||
|
self.selected.append(obj)
|
||||||
self.replot()
|
self.replot()
|
||||||
|
|
||||||
def draw_utility_geometry(self, geo):
|
def draw_utility_geometry(self, geo):
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ CAD program, and create G-Code for Isolation routing.
|
|||||||
- when the Tools in Geometry Editor are activated, the notebook with the Tool Tab will be unhidden. After execution the notebook will hide again for the Buffer Tool.
|
- when the Tools in Geometry Editor are activated, the notebook with the Tool Tab will be unhidden. After execution the notebook will hide again for the Buffer Tool.
|
||||||
- changed the font in Tool names
|
- changed the font in Tool names
|
||||||
- added in Geometry Editor a new Tool: Transformation Tool. It still has some bugs, though ...
|
- added in Geometry Editor a new Tool: Transformation Tool. It still has some bugs, though ...
|
||||||
|
- in Geometry Editor by selecting a shape with a selection shape, that object was added multiple times (one per each selection) to the selected list, which is not intended. Bug fixed.
|
||||||
|
|
||||||
17.02.2019
|
17.02.2019
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user