Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,14 @@ class BrowserCoordinator: BaseCoordinator,
func didFinishSettings(from coordinator: SettingsCoordinator) {
router.dismiss(animated: true, completion: nil)
remove(child: coordinator)

// FXIOS-13959: Changing address toolbar position from settings prevents content interaction homepage/webpage
// This bug is only happening in iOS 15 + 16
// Trigger a layout refresh to correctly position mask for translucent toolbars
if #unavailable(iOS 17) {
browserViewController.view.setNeedsLayout()
browserViewController.view.layoutIfNeeded()
}
}

func openDebugTestTabs(count: Int) {
Expand Down