diff options
author | TacoTheDank <SkytkRSfan3895@gmail.com> | 2022-06-12 17:57:55 -0400 |
---|---|---|
committer | TacoTheDank <SkytkRSfan3895@gmail.com> | 2022-06-12 17:57:55 -0400 |
commit | dc12b522e2503a4e306497fd3388e9c56661cdb2 (patch) | |
tree | 86dbde39cfaeef86facf116fefbb26d3814d87d1 /core | |
parent | 992ca915a00f3aa47cca23d58462bb2b50668e3f (diff) | |
download | AntennaPod-dc12b522e2503a4e306497fd3388e9c56661cdb2.zip |
Fix name of chart box drawable
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/res/drawable-xxxhdpi/chart_box_outline.xml | 7 | ||||
-rw-r--r-- | core/src/main/res/drawable/ic_chart_box.xml | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/core/src/main/res/drawable-xxxhdpi/chart_box_outline.xml b/core/src/main/res/drawable-xxxhdpi/chart_box_outline.xml deleted file mode 100644 index c6a9bf35d..000000000 --- a/core/src/main/res/drawable-xxxhdpi/chart_box_outline.xml +++ /dev/null @@ -1,7 +0,0 @@ -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:height="24dp" - android:width="24dp" - android:viewportWidth="24" - android:viewportHeight="24"> - <path android:fillColor="?attr/action_icon_color" android:pathData="M9 17H7V10H9V17M13 17H11V7H13V17M17 17H15V13H17V17M19 19H5V5H19V19.1M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3Z" /> -</vector> diff --git a/core/src/main/res/drawable/ic_chart_box.xml b/core/src/main/res/drawable/ic_chart_box.xml new file mode 100644 index 000000000..9fba84fa5 --- /dev/null +++ b/core/src/main/res/drawable/ic_chart_box.xml @@ -0,0 +1,9 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:fillColor="?attr/action_icon_color" + android:pathData="M19,3L5,3c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,5h14v14zM7,10h2v7L7,17zM11,7h2v10h-2zM15,13h2v4h-2z" /> +</vector> |