- fixed a bug in the Gerber Editor in the Move command

This commit is contained in:
Marius Stanciu
2021-11-27 01:41:31 +02:00
committed by Marius
parent 7f472838d6
commit 2125071875
2 changed files with 5 additions and 2 deletions

View File

@@ -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

View File

@@ -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