Fix chapter filter icon tinting

(cherry picked from commit b5986b509eb7c2f201a5658e2df891352249d3ee)
This commit is contained in:
arkon 2020-09-27 19:16:46 -04:00 committed by Jobobby04
parent 9c76f1fd8f
commit 3a07ee3deb
2 changed files with 4 additions and 3 deletions

View File

@ -64,7 +64,7 @@ class MangaChaptersHeaderAdapter(
val filterColor = if (hasActiveFilters) {
view.context.getResourceColor(R.attr.colorFilterActive)
} else {
view.context.getResourceColor(R.attr.colorOnPrimary)
view.context.getResourceColor(R.attr.colorOnBackground)
}
DrawableCompat.setTint(binding.btnChaptersFilter.drawable, filterColor)

View File

@ -8,7 +8,8 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:background="?attr/colorPrimary">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
@ -35,7 +36,7 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_more_vert_24dp"
app:tint="?attr/colorOnBackground"
app:tint="?attr/colorOnPrimary"
tools:visibility="visible" />
</androidx.constraintlayout.widget.ConstraintLayout>