mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-17 15:26:23 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/14546 - Speculative fix for ANR
This commit is contained in:
parent
780ec96d7e
commit
26583d2e05
@ -92,6 +92,7 @@ class BrowserToolbarView(
|
||||
|
||||
with(container.context) {
|
||||
val sessionManager = components.core.sessionManager
|
||||
val isPinningSupported = components.useCases.webAppUseCases.isPinningSupported()
|
||||
|
||||
if (toolbarPosition == ToolbarPosition.TOP) {
|
||||
val offsetChangedListener =
|
||||
@ -173,7 +174,8 @@ class BrowserToolbarView(
|
||||
lifecycleOwner = lifecycleOwner,
|
||||
sessionManager = sessionManager,
|
||||
store = components.core.store,
|
||||
bookmarksStorage = bookmarkStorage
|
||||
bookmarksStorage = bookmarkStorage,
|
||||
isPinningSupported = isPinningSupported
|
||||
)
|
||||
view.display.setMenuDismissAction {
|
||||
view.invalidateActions()
|
||||
|
@ -50,7 +50,8 @@ class DefaultToolbarMenu(
|
||||
shouldReverseItems: Boolean,
|
||||
private val onItemTapped: (ToolbarMenu.Item) -> Unit = {},
|
||||
private val lifecycleOwner: LifecycleOwner,
|
||||
private val bookmarksStorage: BookmarksStorage
|
||||
private val bookmarksStorage: BookmarksStorage,
|
||||
val isPinningSupported: Boolean
|
||||
) : ToolbarMenu {
|
||||
|
||||
private var currentUrlIsBookmarked = false
|
||||
@ -153,11 +154,11 @@ class DefaultToolbarMenu(
|
||||
|
||||
// Predicates that need to be repeatedly called as the session changes
|
||||
private fun canAddToHomescreen(): Boolean =
|
||||
session != null && context.components.useCases.webAppUseCases.isPinningSupported() &&
|
||||
session != null && isPinningSupported &&
|
||||
!context.components.useCases.webAppUseCases.isInstallable()
|
||||
|
||||
private fun canInstall(): Boolean =
|
||||
session != null && context.components.useCases.webAppUseCases.isPinningSupported() &&
|
||||
session != null && isPinningSupported &&
|
||||
context.components.useCases.webAppUseCases.isInstallable()
|
||||
|
||||
private fun shouldShowOpenInApp(): Boolean = session?.let { session ->
|
||||
|
Loading…
Reference in New Issue
Block a user