Keyboard shortcuts: increase/decrease font size, refresh

This commit is contained in:
James Magahern
2020-11-10 16:41:19 -06:00
parent 9344e3c32d
commit 961120ff9e
3 changed files with 26 additions and 4 deletions

View File

@@ -79,6 +79,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
title: "Find on Page",
action: #selector(ShortcutResponder.findOnPage)
),
// Refresh
UIKeyCommand(
modifiers: [.command], input: "R",
title: "Refresh",
action: #selector(ShortcutResponder.refresh)
),
]
}