From 56ed848fe7e9786f5d259a76e34ebeec34d4a1ff Mon Sep 17 00:00:00 2001 From: James Magahern Date: Tue, 28 Jun 2022 16:59:47 -0700 Subject: [PATCH] Focus web view shortcut now cmd+shift+e to avoid f&r conflict --- App/KeyboardShortcuts.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/KeyboardShortcuts.swift b/App/KeyboardShortcuts.swift index d57987b..0e92371 100644 --- a/App/KeyboardShortcuts.swift +++ b/App/KeyboardShortcuts.swift @@ -127,7 +127,7 @@ public class KeyboardShortcuts { return [ // Focus Web View UIKeyCommand( - modifiers: .command, input: "e", + modifiers: [ .command, .shift ], input: "w", title: "Focus Web View", action: #selector(ShortcutResponder.focusWebView) ),