For #4199 make checkbox disabled when there is no data (#4200)

* For #4199 make checkbox unclickable when there is no data
nightly-build-test
Nikit Bhandari 5 years ago committed by Emily Kager
parent bcf2288a88
commit 1cb9f88787

@ -150,6 +150,7 @@ class DeleteBrowsingDataFragment : Fragment() {
view?.open_tabs_item?.apply {
val openTabs = requireComponents.core.sessionManager.sessions.size
subtitleView.text = resources.getString(R.string.preferences_delete_browsing_data_tabs_subtitle, openTabs)
isEnabled = openTabs > 0
}
}
@ -165,6 +166,7 @@ class DeleteBrowsingDataFragment : Fragment() {
R.string.preferences_delete_browsing_data_browsing_data_subtitle,
historyCount
)
isEnabled = historyCount > 0
}
}
}
@ -182,6 +184,7 @@ class DeleteBrowsingDataFragment : Fragment() {
R.string.preferences_delete_browsing_data_collections_subtitle,
collectionsCount
)
isEnabled = collectionsCount > 0
}
}
}

Loading…
Cancel
Save