From 8ca6ffc379accd8a0cc20dfbcfeab38f98d52feb Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 8 Dec 2019 18:31:55 -0700 Subject: [PATCH] Restore focus to the timeline after searching so that keyboard shortcuts work. Issue #1387 --- iOS/SceneCoordinator.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index ae84899f7..09eaa09fb 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -776,6 +776,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider { savedSearchArticles = nil isSearching = false selectArticle(nil) + masterTimelineViewController?.focus() } func searchArticles(_ searchString: String, _ searchScope: SearchScope) {