- changed the circle resolution back to the default of 16 since this value is good for fast rendering of Gerber files

- added a shortcut to select all apertures in the Gerber Editor
- other minor fixes
This commit is contained in:
Marius Stanciu
2021-09-28 05:25:34 +03:00
committed by Marius
parent d0ee5ea3fa
commit 8d8a522714
6 changed files with 91 additions and 25 deletions

View File

@@ -3594,6 +3594,11 @@ class MainGUI(QtWidgets.QMainWindow):
elif self.app.call_source == 'grb_editor':
# CTRL
if modifiers == QtCore.Qt.KeyboardModifier.ControlModifier:
# Select All
if key == QtCore.Qt.Key.Key_E or key == 'A':
self.app.grb_editor.ui.apertures_table.selectAll()
return
# Eraser Tool
if key == QtCore.Qt.Key.Key_E or key == 'E':
self.app.grb_editor.on_eraser()