From b230afcd354dcd4fa1adeabb93317cd2af0c1c06 Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Thu, 11 Nov 2021 18:59:09 +0530 Subject: [PATCH] Fix FAB Icon color in `OnScreenEditActivity` The icons in these FABs had the same color as the FAB prior which led them to being invisible. This has been fixed by setting a white tint on them which makes the icons clearly visible. --- app/src/main/res/layout/on_screen_edit_mini_fab.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/layout/on_screen_edit_mini_fab.xml b/app/src/main/res/layout/on_screen_edit_mini_fab.xml index 1027a9df..6e6c29e6 100644 --- a/app/src/main/res/layout/on_screen_edit_mini_fab.xml +++ b/app/src/main/res/layout/on_screen_edit_mini_fab.xml @@ -6,5 +6,5 @@ android:layout_height="wrap_content" app:backgroundTint="?attr/colorPrimary" app:fabSize="mini" - app:tint="?attr/colorAccent" + app:tint="@android:color/white" tools:ignore="ContentDescription" />