From 551c868899c9eb71acfd9bc61cdc6346408829fe Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 8 Oct 2019 08:25:44 +0530 Subject: [PATCH] Add macOS specific shortcuts for changing font size --- src/pyj/read_book/shortcuts.pyj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyj/read_book/shortcuts.pyj b/src/pyj/read_book/shortcuts.pyj index 48b2599173..157ec145f4 100644 --- a/src/pyj/read_book/shortcuts.pyj +++ b/src/pyj/read_book/shortcuts.pyj @@ -204,13 +204,13 @@ SHORTCUTS = { ), 'increase_font_size': desc( - v"['Ctrl+=', 'Ctrl++', 'Ctrl+Shift++', 'Ctrl+Shift+=']", + v"['Ctrl+=', 'Ctrl++', 'Ctrl+Shift++', 'Ctrl+Shift+=', 'Meta++', 'Meta+Shift++', 'Meta+Shift+=']", 'ui', _('Increase font size'), ), 'decrease_font_size': desc( - v"['Ctrl+-', 'Ctrl+_', 'Ctrl+Shift+-', 'Ctrl+Shift+_']", + v"['Ctrl+-', 'Ctrl+_', 'Ctrl+Shift+-', 'Ctrl+Shift+_', 'Meta+-', 'Meta+_']", 'ui', _('Decrease font size'), ),