Prevent crash when the web view load hasn't set up the tap zone constraints. Issue #1564
This commit is contained in:
parent
5058899ec1
commit
15569e62b2
@ -230,8 +230,8 @@ class WebViewController: UIViewController {
|
|||||||
if isFullScreenAvailable {
|
if isFullScreenAvailable {
|
||||||
AppDefaults.articleFullscreenEnabled = false
|
AppDefaults.articleFullscreenEnabled = false
|
||||||
coordinator.showStatusBar()
|
coordinator.showStatusBar()
|
||||||
topShowBarsViewConstraint.constant = 0
|
topShowBarsViewConstraint?.constant = 0
|
||||||
bottomShowBarsViewConstraint.constant = 0
|
bottomShowBarsViewConstraint?.constant = 0
|
||||||
navigationController?.setNavigationBarHidden(false, animated: true)
|
navigationController?.setNavigationBarHidden(false, animated: true)
|
||||||
navigationController?.setToolbarHidden(false, animated: true)
|
navigationController?.setToolbarHidden(false, animated: true)
|
||||||
configureContextMenuInteraction()
|
configureContextMenuInteraction()
|
||||||
@ -242,8 +242,8 @@ class WebViewController: UIViewController {
|
|||||||
if isFullScreenAvailable {
|
if isFullScreenAvailable {
|
||||||
AppDefaults.articleFullscreenEnabled = true
|
AppDefaults.articleFullscreenEnabled = true
|
||||||
coordinator.hideStatusBar()
|
coordinator.hideStatusBar()
|
||||||
topShowBarsViewConstraint.constant = -44.0
|
topShowBarsViewConstraint?.constant = -44.0
|
||||||
bottomShowBarsViewConstraint.constant = 44.0
|
bottomShowBarsViewConstraint?.constant = 44.0
|
||||||
navigationController?.setNavigationBarHidden(true, animated: true)
|
navigationController?.setNavigationBarHidden(true, animated: true)
|
||||||
navigationController?.setToolbarHidden(true, animated: true)
|
navigationController?.setToolbarHidden(true, animated: true)
|
||||||
configureContextMenuInteraction()
|
configureContextMenuInteraction()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user