Fix variable name and test

This commit is contained in:
Veronica Berglyd Olsen
2023-11-25 23:57:12 +01:00
parent bedd71b105
commit 6fd4417350
3 changed files with 8 additions and 3 deletions
+3 -3
View File
@@ -565,9 +565,9 @@ class GuiMainMenu(QMenuBar):
)
# Insert > Summary Comment
self.aInsSynopsis = self.mInsComments.addAction(self.tr("Summary Comment"))
self.aInsSynopsis.setShortcut("Ctrl+K, U")
self.aInsSynopsis.triggered.connect(
self.aInsSummary = self.mInsComments.addAction(self.tr("Summary Comment"))
self.aInsSummary.setShortcut("Ctrl+K, U")
self.aInsSummary.triggered.connect(
lambda: self.requestDocInsert.emit(nwDocInsert.SUMMARY)
)