Update tests

This commit is contained in:
Veronica Berglyd Olsen
2024-02-10 15:49:49 +01:00
parent 9c1bdef9ad
commit c3e6b4e10a
3 changed files with 30 additions and 3 deletions
+3 -3
View File
@@ -782,9 +782,9 @@ class GuiMainMenu(QMenuBar):
)
# Format > Ignore Text
self.aFmtComment = self.fmtMenu.addAction(self.tr("Toggle Ignore Text"))
self.aFmtComment.setShortcut("Ctrl+Shift+D")
self.aFmtComment.triggered.connect(
self.aFmtIgnore = self.fmtMenu.addAction(self.tr("Toggle Ignore Text"))
self.aFmtIgnore.setShortcut("Ctrl+Shift+D")
self.aFmtIgnore.triggered.connect(
lambda: self.requestDocAction.emit(nwDocAction.BLOCK_IGN)
)