diff --git a/CHANGELOG.md b/CHANGELOG.md index ee8a365d..6d439a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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' 23.11.2021 diff --git a/appEditors/AppGerberEditor.py b/appEditors/AppGerberEditor.py index 0cc6632a..fbd32c01 100644 --- a/appEditors/AppGerberEditor.py +++ b/appEditors/AppGerberEditor.py @@ -2198,7 +2198,7 @@ class MoveEditorGrb(ShapeToolEditorGrb): for index in self.draw_app.ui.apertures_table.selectedIndexes(): row = index.row() # 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) # Switch notebook to Properties page