Add macOS specific shortcuts for changing font size

This commit is contained in:
Kovid Goyal 2019-10-08 08:25:44 +05:30
parent fd2eb6b6d8
commit 551c868899
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -204,13 +204,13 @@ SHORTCUTS = {
), ),
'increase_font_size': desc( 'increase_font_size': desc(
v"['Ctrl+=', 'Ctrl++', 'Ctrl+Shift++', 'Ctrl+Shift+=']", v"['Ctrl+=', 'Ctrl++', 'Ctrl+Shift++', 'Ctrl+Shift+=', 'Meta++', 'Meta+Shift++', 'Meta+Shift+=']",
'ui', 'ui',
_('Increase font size'), _('Increase font size'),
), ),
'decrease_font_size': desc( 'decrease_font_size': desc(
v"['Ctrl+-', 'Ctrl+_', 'Ctrl+Shift+-', 'Ctrl+Shift+_']", v"['Ctrl+-', 'Ctrl+_', 'Ctrl+Shift+-', 'Ctrl+Shift+_', 'Meta+-', 'Meta+_']",
'ui', 'ui',
_('Decrease font size'), _('Decrease font size'),
), ),