diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2023-10-15 10:26:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-15 10:26:13 +0200 |
commit | 0efa91a0b193bb902716b74d14fbaf6a53bc6251 (patch) | |
tree | 461f21b4f6fed079f76e812f1215f92b56de3914 /core/src | |
parent | 475e0f51280c530754188d48342d92dca4da2a7b (diff) | |
download | AntennaPod-0efa91a0b193bb902716b74d14fbaf6a53bc6251.zip |
Add error icon on subscriptions screen (#6679)
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/res/drawable/ic_error.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/main/res/drawable/ic_error.xml b/core/src/main/res/drawable/ic_error.xml index 402f224b2..fc4fa2b9a 100644 --- a/core/src/main/res/drawable/ic_error.xml +++ b/core/src/main/res/drawable/ic_error.xml @@ -4,6 +4,9 @@ android:viewportWidth="24" android:viewportHeight="24"> <path - android:fillColor="#FFFFFF" + android:fillColor="?android:attr/colorBackground" + android:pathData="M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1z" /> + <path + android:fillColor="?attr/icon_red" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-2h2v2zM13,13h-2L11,7h2v6z" /> </vector> |