- fixed an issue where using the 'G' shortcut key in Editors will not toggle the grid snap

- fixed an issue in the Excellon Editor where selecting the drills did not highlight them but instead made them invisible (although the selection still worked)
- fixed an issue in the Gerber Editor where selecting one shape will auto-select all the shapes made with the same aperture
This commit is contained in:
Marius Stanciu
2022-03-10 00:13:47 +02:00
committed by Marius
parent 8900c89214
commit da20db5527
4 changed files with 39 additions and 18 deletions

View File

@@ -3714,7 +3714,8 @@ class AppExcEditor(QtCore.QObject):
continue
if shape_plus in self.selected:
self.plot_shape(geometry=shape_plus.geo, color=self.app.options['global_sel_draw_color'] + 'FF',
self.plot_shape(geometry=shape_plus.geo,
color=self.app.options['global_sel_draw_color'][:-2] + 'FF',
linewidth=2)
continue
self.plot_shape(geometry=shape_plus.geo, color=self.app.options['global_draw_color'][:-2] + 'FF')