[fenix] Color the system bars in custom tabs (https://github.com/mozilla-mobile/fenix/pull/4819)

pull/600/head
Tiger Oakes 5 years ago committed by Jeff Boek
parent efe2e2e466
commit d5e5b73485

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- #4704 - Adds ability to show a different alpha when no elements available to be deleted for a delete browsing data item
- #4137 - Adds pagination to the history view
- #3695 - Made search suggestions for other tabs clickable
- Custom tabs change the status bar color to match the toolbar color
### Changed
- Remove forced focus of toolbar on homescreen

@ -65,9 +65,11 @@ class CustomTabsIntegration(
sessionManager,
toolbar,
sessionId,
customTabToolbarMenu.menuBuilder,
START_OF_MENU_ITEMS_INDEX,
closeListener = { activity?.finish() })
menuBuilder = customTabToolbarMenu.menuBuilder,
menuItemIndex = START_OF_MENU_ITEMS_INDEX,
window = activity?.window,
closeListener = { activity?.finish() }
)
override fun start() {
feature.start()

Loading…
Cancel
Save