allow customizing the primary and app icon color at Auto

This commit is contained in:
tibbi 2021-11-03 21:03:39 +01:00
parent a4b0bf4bb4
commit e6e734c8f9

View file

@ -242,9 +242,13 @@ class CustomizationActivity : BaseSimpleActivity() {
val theme = predefinedThemes[curSelectedThemeId]!!
curTextColor = getColor(theme.textColorId)
curBackgroundColor = getColor(theme.backgroundColorId)
curPrimaryColor = getColor(theme.primaryColorId)
curAccentColor = getColor(R.color.color_primary)
curAppIconColor = getColor(theme.appIconColorId)
if (curSelectedThemeId != THEME_AUTO) {
curPrimaryColor = getColor(theme.primaryColorId)
curAccentColor = getColor(R.color.color_primary)
curAppIconColor = getColor(theme.appIconColorId)
}
curNavigationBarColor = getThemeNavigationColor(curSelectedThemeId)
setTheme(getThemeId(curPrimaryColor))
colorChanged()