1
0
mirror of https://github.com/mihonapp/mihon.git synced 2025-08-05 22:31:31 +02:00

Use primary color for excluded tristate filter icon (fixes )

This commit is contained in:
arkon
2022-06-25 22:34:48 -04:00
parent 8ec91cddab
commit 3ca1ce4636

@@ -42,10 +42,10 @@ open class TriStateItem(val filter: Filter.TriState) : AbstractFlexibleItem<TriS
else -> throw Exception("Unknown state")
},
)?.apply {
val color = if (filter.state == Filter.TriState.STATE_INCLUDE) {
view.context.getResourceColor(R.attr.colorAccent)
} else {
val color = if (filter.state == Filter.TriState.STATE_IGNORE) {
view.context.getResourceColor(R.attr.colorOnBackground, 0.38f)
} else {
view.context.getResourceColor(R.attr.colorPrimary)
}
setTint(color)