mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix superscript shortcut
https://anki.tenderapp.com/discussions/beta-testing/627-anki-210-beta-1#comment_43048185
This commit is contained in:
parent
8a85471374
commit
630cddc786
1 changed files with 2 additions and 2 deletions
|
@ -532,7 +532,7 @@ class Editor:
|
|||
righttopbtns.append(self._addButton('text_bold', 'bold', "Bold text (Ctrl+B)", id='bold'))
|
||||
righttopbtns.append(self._addButton('text_italic', 'italic', "Italic text (Ctrl+I)", id='italic'))
|
||||
righttopbtns.append(self._addButton('text_under', 'underline', "Underline text (Ctrl+U)", id='underline'))
|
||||
righttopbtns.append(self._addButton('text_super', 'super', "Superscript (Ctrl+Shift+=)", id='superscript'))
|
||||
righttopbtns.append(self._addButton('text_super', 'super', "Superscript (Ctrl++)", id='superscript'))
|
||||
righttopbtns.append(self._addButton('text_sub', 'sub', "Subscript (Ctrl+=)", id='subscript'))
|
||||
righttopbtns.append(self._addButton('text_clear', 'clear', "Remove formatting (Ctrl+R)"))
|
||||
# The color selection buttons do not use an icon so the HTML must be specified manually
|
||||
|
@ -600,7 +600,7 @@ class Editor:
|
|||
("Ctrl+B", self.toggleBold),
|
||||
("Ctrl+I", self.toggleItalic),
|
||||
("Ctrl+U", self.toggleUnderline),
|
||||
("Ctrl+Shift+=", self.toggleSuper),
|
||||
("Ctrl++", self.toggleSuper),
|
||||
("Ctrl+=", self.toggleSub),
|
||||
("Ctrl+R", self.removeFormat),
|
||||
("F7", self.onForeground),
|
||||
|
|
Loading…
Reference in a new issue