1
0
Fork 0

Revert #2533: Removes feature flag for tab collections

master
Sawyer Blatz 2019-05-17 14:59:12 -07:00
parent 3619f1417d
commit ec1a0e6c34
1 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ import kotlinx.android.synthetic.main.tab_header.view.*
import mozilla.components.browser.menu.BrowserMenu
import mozilla.components.browser.menu.BrowserMenuBuilder
import mozilla.components.browser.menu.item.SimpleBrowserMenuItem
import org.mozilla.fenix.BuildConfig
import org.mozilla.fenix.R
import org.mozilla.fenix.home.sessioncontrol.SessionControlAction
import org.mozilla.fenix.home.sessioncontrol.TabAction
@ -94,7 +93,7 @@ class TabHeaderViewHolder(
context.getString(R.string.tabs_menu_save_to_collection)
) {
onItemTapped.invoke(Item.SaveToCollection)
}.apply { visible = { !isPrivate && BuildConfig.COLLECTIONS_ENABLED } }
}.apply { visible = { !isPrivate } }
)
}
}