- added shortcut key 'L' for creating 'New Excellon'

This commit is contained in:
Marius Stanciu
2019-01-27 05:50:41 +02:00
committed by Marius S
parent 4f7b2bbb34
commit 18fb7c2c1f
4 changed files with 10 additions and 2 deletions

View File

@@ -376,6 +376,10 @@ class ObjectCollection(QtCore.QAbstractItemModel):
if key == QtCore.Qt.Key_J:
self.app.on_jump_to()
# New Excellon
if key == QtCore.Qt.Key_L:
self.app.new_excellon_object()
# Move tool toggle
if key == QtCore.Qt.Key_M:
self.app.move_tool.toggle()