Add key generator to text index

This commit is contained in:
Veronica Berglyd Olsen
2024-04-14 22:17:00 +02:00
parent ba42285172
commit 5568b43b22
3 changed files with 25 additions and 4 deletions
+6
View File
@@ -597,6 +597,12 @@ class GuiMainMenu(QMenuBar):
lambda: self.requestDocInsert.emit(nwDocInsert.LIPSUM)
)
# Insert > Footnote
self.aFootnote = self.insMenu.addAction(self.tr("Footnote"))
self.aFootnote.triggered.connect(
lambda: self.requestDocInsert.emit(nwDocInsert.FOOTNOTE)
)
return
def _buildFormatMenu(self) -> None: