We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1499f6 commit 53ff026Copy full SHA for 53ff026
ReText/window.py
@@ -187,7 +187,12 @@ def __init__(self, parent=None):
187
self.printFile, shct=QKeySequence.StandardKey.Print)
188
self.actionPrintPreview = self.act(self.tr('Print preview'), 'document-print-preview',
189
self.printPreview)
190
- self.actionViewHtml = self.act(self.tr('View HTML code'), 'text-html', self.viewHtml)
+ self.actionViewHtml = self.act(
191
+ self.tr('View HTML code'),
192
+ 'text-html',
193
+ self.viewHtml,
194
+ shct=Qt.Modifier.CTRL | Qt.Key.Key_H,
195
+ )
196
self.actionChangeEditorFont = self.act(self.tr('Change editor font'),
197
trig=self.changeEditorFont)
198
self.actionChangePreviewFont = self.act(self.tr('Change preview font'),
0 commit comments