mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-02-22 18:31:50 +01:00
Fix Autofill dataset icon tint (#1207)
ImageViews in RemoteViews require tint to be specified with the android:
prefix, the lint thinks otherwise.
(cherry picked from commit 02c853c3b1)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
da8ca8b46d
commit
dcee285613
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue