Fix open in browser when the article is selected. Fixes #3215

This commit is contained in:
Maurice Parker 2021-07-06 18:50:48 -05:00
parent fd4fd5174e
commit 3ea427bd2d

View File

@ -129,6 +129,15 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
}
// MARK: Actions
@objc func openInBrowser(_ sender: Any?) {
coordinator.showBrowserForCurrentArticle()
}
@objc func openInAppBrowser(_ sender: Any?) {
coordinator.showInAppBrowser()
}
@IBAction func toggleFilter(_ sender: Any) {
coordinator.toggleReadArticlesFilter()
}