diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index b3b3117e..f770d1c3 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -204,7 +204,7 @@ class GuiMainMenu(QMenuBar): # Project > Edit menuItem = QAction(QIcon.fromTheme("document-properties"), "&Edit Item", self) menuItem.setStatusTip("Change Item Settings") - menuItem.setShortcut("Ctrl+E") + menuItem.setShortcuts(["Ctrl+E", "F2"]) menuItem.triggered.connect(self.theParent.editItem) self.projMenu.addAction(menuItem)