From 8c34f8f7a3fbab16b861ee6872a5b4bc758b8226 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sat, 25 May 2019 19:07:57 +0200 Subject: [PATCH] Pressing F2 is equivalent to pressing Ctrl+E --- nw/gui/mainmenu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)