mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-19 09:25:34 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/15535: hasOpenTabs now considers the selected tab mode in tray tab.
This commit is contained in:
parent
6977b53c5f
commit
192e5dc063
@ -213,9 +213,15 @@ class TabTrayView(
|
||||
|
||||
tabTrayItemMenu =
|
||||
TabTrayItemMenu(
|
||||
view.context,
|
||||
{ tabs.isNotEmpty() && view.tab_layout.selectedTabPosition == 0 },
|
||||
{ tabs.isNotEmpty() }) {
|
||||
context = view.context,
|
||||
shouldShowSaveToCollection = { tabs.isNotEmpty() && view.tab_layout.selectedTabPosition == 0 },
|
||||
hasOpenTabs = {
|
||||
if (isPrivateModeSelected) {
|
||||
view.context.components.core.store.state.privateTabs.isNotEmpty()
|
||||
} else {
|
||||
view.context.components.core.store.state.normalTabs.isNotEmpty()
|
||||
}
|
||||
}) {
|
||||
when (it) {
|
||||
is TabTrayItemMenu.Item.ShareAllTabs -> interactor.onShareTabsClicked(
|
||||
isPrivateModeSelected
|
||||
|
Loading…
Reference in New Issue
Block a user