1
0
Fork 0

Closes #4240 - Exclude custom tabs from displayed tab count

master
ekager 2019-07-30 09:10:00 -07:00 committed by Emily Kager
parent 8ff77b90f3
commit 0703fdc91f
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class DeleteBrowsingDataFragment : Fragment() {
private fun updateTabCount() {
view?.open_tabs_item?.apply {
val openTabs = requireComponents.core.sessionManager.size
val openTabs = requireComponents.core.sessionManager.sessions.size
subtitleView.text = resources.getString(R.string.preferences_delete_browsing_data_tabs_subtitle, openTabs)
}
}