rename 'manage highlighting' to 'highlighters'
This commit is contained in:
6
main.py
6
main.py
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user