diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/oreo_autofill_dataset.xml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a4ea1b48..d8d75bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file. - Cancelling the Autofill "Generate password" action now correctly returns you to the original app. - If multiple username fields exist in the password, we now ensure the later ones are not dropped from extra content. +- Icons in Autofill suggestions are no longer black on almost black in dark mode. ## [1.13.1] - 2020-10-23 diff --git a/app/src/main/res/layout/oreo_autofill_dataset.xml b/app/src/main/res/layout/oreo_autofill_dataset.xml index 2e9f48b9..264075f0 100644 --- a/app/src/main/res/layout/oreo_autofill_dataset.xml +++ b/app/src/main/res/layout/oreo_autofill_dataset.xml @@ -4,7 +4,6 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" @@ -23,7 +22,8 @@ android:adjustViewBounds="true" android:maxWidth="20dp" android:maxHeight="20dp" - app:tint="@color/secondary_color" + android:tint="@color/secondary_color" + tools:ignore="UseAppTint" tools:src="@mipmap/ic_launcher" /> <LinearLayout |