mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-11 13:11:01 +00:00
For #15535: hasOpenTabs now considers the selected tab mode in tray tab.
This commit is contained in:
parent
cd6ab45119
commit
19b377c021
@ -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