Fix error icon in the drawer (#7238)
There has been some regression that the error icon in the drawer was just a circle instead of the the exclamation mark. The error occurred because the icon was modified to have a background circle once it was added to the subscription screens. However, in the drawer a icon tint was applied which now also tinted the background and made now only the background show.
This commit is contained in:
parent
a3cd74d5ae
commit
76bc899173
|
@ -59,7 +59,6 @@
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:contentDescription="@string/refresh_failed_msg"
|
android:contentDescription="@string/refresh_failed_msg"
|
||||||
app:srcCompat="@drawable/ic_error"
|
app:srcCompat="@drawable/ic_error"
|
||||||
app:tint="?attr/icon_red"
|
|
||||||
tools:text="!" />
|
tools:text="!" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:width="16dp"
|
android:height="24dp"
|
||||||
android:height="16dp"
|
android:width="24dp"
|
||||||
android:viewportWidth="24"
|
android:viewportWidth="24"
|
||||||
android:viewportHeight="24">
|
android:viewportHeight="24">
|
||||||
<path
|
<path
|
||||||
|
|
Loading…
Reference in New Issue