add icon for bot indicator preference (#1208)

main
Konrad Pozniak 5 years ago committed by GitHub
parent 22ef816d35
commit 57eded9a05
  1. 5
      app/src/main/java/com/keylesspalace/tusky/fragment/preference/PreferencesFragment.kt

@ -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() {

Loading…
Cancel
Save