Replace filter group icons with expand more/less

This commit is contained in:
arkon
2020-06-23 08:51:38 -04:00
parent e99a27e382
commit 4e633b8936
6 changed files with 22 additions and 22 deletions

View File

@ -36,9 +36,9 @@ class GroupItem(val filter: Filter.Group<*>) : AbstractExpandableHeaderItem<Grou
holder.icon.setVectorCompat(
if (isExpanded) {
R.drawable.ic_expand_more_white_24dp
R.drawable.ic_baseline_expand_less_24dp
} else {
R.drawable.ic_chevron_right_white_24dp
R.drawable.ic_baseline_expand_more_24dp
}
)

View File

@ -33,9 +33,9 @@ class SortGroup(val filter: Filter.Sort) : AbstractExpandableHeaderItem<SortGrou
holder.icon.setVectorCompat(
if (isExpanded) {
R.drawable.ic_expand_more_white_24dp
R.drawable.ic_baseline_expand_less_24dp
} else {
R.drawable.ic_chevron_right_white_24dp
R.drawable.ic_baseline_expand_more_24dp
}
)