rename 'manage highlighting' to 'highlighters'

This commit is contained in:
2021-10-31 19:52:11 +01:00
parent 50965d9a0b
commit 2f1aabb379
2 changed files with 7 additions and 7 deletions

View File

@@ -71,9 +71,9 @@ class MainWindow(QMainWindow):
return file_menu
def highlight_menu(self) -> QMenu:
result = QMenu(self.tr("&Highlighting"), self)
manage = QAction(self.tr("&Manage"), self)
manage.setShortcut('Ctrl+M')
result = QMenu(self.tr("&View"), self)
manage = QAction(self.tr("&Highlighter"), self)
manage.setShortcut('Ctrl+H')
manage.triggered.connect(lambda: HighlightingDialog(self.settings).exec())
result.addAction(manage)
return result