add icon for bot indicator preference (#1208)

This commit is contained in:
Konrad Pozniak 2019-04-21 22:59:33 +02:00 committed by GitHub
parent a217b9baf7
commit e7afa0362b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -68,6 +68,11 @@ class PreferencesFragment : PreferenceFragmentCompat() {
val languagePreference: Preference = requirePreference("language")
languagePreference.icon = IconicsDrawable(languagePreference.context, GoogleMaterial.Icon.gmd_translate).sizePx(iconSize).color(ThemeUtils.getColor(languagePreference.context, R.attr.toolbar_icon_tint))
val botIndicatorPreference = requirePreference("showBotOverlay")
val botDrawable = botIndicatorPreference.context.getDrawable(R.drawable.ic_bot_24dp)
ThemeUtils.setDrawableTint(context, botDrawable, R.attr.toolbar_icon_tint)
botIndicatorPreference.icon = botDrawable
}
override fun onResume() {