diff --git a/iOS/Article/WebViewController.swift b/iOS/Article/WebViewController.swift index 052506a16..c6fe79751 100644 --- a/iOS/Article/WebViewController.swift +++ b/iOS/Article/WebViewController.swift @@ -227,15 +227,13 @@ class WebViewController: UIViewController { } func showBars() { - if isFullScreenAvailable { - AppDefaults.articleFullscreenEnabled = false - coordinator.showStatusBar() - topShowBarsViewConstraint?.constant = 0 - bottomShowBarsViewConstraint?.constant = 0 - navigationController?.setNavigationBarHidden(false, animated: true) - navigationController?.setToolbarHidden(false, animated: true) - configureContextMenuInteraction() - } + AppDefaults.articleFullscreenEnabled = false + coordinator.showStatusBar() + topShowBarsViewConstraint?.constant = 0 + bottomShowBarsViewConstraint?.constant = 0 + navigationController?.setNavigationBarHidden(false, animated: true) + navigationController?.setToolbarHidden(false, animated: true) + configureContextMenuInteraction() } func hideBars() { diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index 3cf46a1d0..07ea13baa 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -1102,6 +1102,7 @@ extension SceneCoordinator: UISplitViewControllerDelegate { } if let articleViewController = masterNavigationController.viewControllers.last as? ArticleViewController { + articleViewController.showBars(self) masterNavigationController.popViewController(animated: false) let controller = addNavControllerIfNecessary(articleViewController, showButton: true) return controller