- fixed a bug in the Gerber Editor in the Move command
This commit is contained in:
@@ -7,8 +7,11 @@ CHANGELOG for FlatCAM beta
|
|||||||
|
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
26.11.2021
|
27.11.2021
|
||||||
|
|
||||||
|
- fixed a bug in the Gerber Editor in the Move command
|
||||||
|
|
||||||
|
26.11.2021
|
||||||
- in Follow Plugin made sure that the notebook is disabled until the user finish (or cancel) the operation when using the area type of 'follow'
|
- in Follow Plugin made sure that the notebook is disabled until the user finish (or cancel) the operation when using the area type of 'follow'
|
||||||
|
|
||||||
23.11.2021
|
23.11.2021
|
||||||
|
|||||||
@@ -2198,7 +2198,7 @@ class MoveEditorGrb(ShapeToolEditorGrb):
|
|||||||
for index in self.draw_app.ui.apertures_table.selectedIndexes():
|
for index in self.draw_app.ui.apertures_table.selectedIndexes():
|
||||||
row = index.row()
|
row = index.row()
|
||||||
# on column 1 in tool tables we hold the aperture codes, and we retrieve them as strings
|
# on column 1 in tool tables we hold the aperture codes, and we retrieve them as strings
|
||||||
aperture_on_row = self.draw_app.ui.apertures_table.item(row, 1).text()
|
aperture_on_row = int(self.draw_app.ui.apertures_table.item(row, 1).text())
|
||||||
self.selected_apertures.append(aperture_on_row)
|
self.selected_apertures.append(aperture_on_row)
|
||||||
|
|
||||||
# Switch notebook to Properties page
|
# Switch notebook to Properties page
|
||||||
|
|||||||
Reference in New Issue
Block a user