1
0
Fork 0

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

* For #4199 make checkbox unclickable when there is no data
master
Nikit Bhandari 2019-08-03 06:12:39 +05:30 committed by Emily Kager
parent bcf2288a88
commit 1cb9f88787
1 changed files with 3 additions and 0 deletions

View File

@ -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
}
}
}