From 322c7b4613794d1b5a014c14be1df375c793588c Mon Sep 17 00:00:00 2001 From: Neha Binwal <67039214+neha-b2001@users.noreply.github.com> Date: Fri, 4 Jun 2021 00:24:55 +0530 Subject: [PATCH] [fenix] For https://github.com/mozilla-mobile/fenix/issues/19307: Increased contrast ratio of chevron symbol in Collections (For Dark theme) (https://github.com/mozilla-mobile/fenix/pull/19377) * For https://github.com/mozilla-mobile/fenix/issues/19307: Increased contrast ratio of chevron symbol in Collections (Dark Theme) - Made a code change in collection_home_list_row.xml which fixes the colour of the chevron symbol in Dark theme * Replaced android:src with app:srcCompat to pass Lint check --- app/src/main/res/layout/collection_home_list_row.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/layout/collection_home_list_row.xml b/app/src/main/res/layout/collection_home_list_row.xml index d37675e476..8bb37660df 100644 --- a/app/src/main/res/layout/collection_home_list_row.xml +++ b/app/src/main/res/layout/collection_home_list_row.xml @@ -51,7 +51,7 @@ android:layout_width="24dp" android:layout_height="24dp" android:layout_marginEnd="16dp" - android:background="@drawable/ic_chevron" + app:srcCompat="@drawable/ic_chevron" android:contentDescription="@string/tab_menu" app:layout_constraintBottom_toBottomOf="@id/collection_icon" app:layout_constraintEnd_toStartOf="@+id/collection_share_button"