- 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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user