Fix wrong keyboard shortcut for Short comment insert

This commit is contained in:
Veronica Berglyd Olsen
2023-11-26 21:40:05 +01:00
parent 0676056968
commit 47781f981f
+1 -1
View File
@@ -566,7 +566,7 @@ class GuiMainMenu(QMenuBar):
# Insert > Short Description Comment
self.aInsShort = self.mInsComments.addAction(self.tr("Short Description Comment"))
self.aInsShort.setShortcut("Ctrl+K, U")
self.aInsShort.setShortcut("Ctrl+K, H")
self.aInsShort.triggered.connect(
lambda: self.requestDocInsert.emit(nwDocInsert.SHORT)
)