Skip to content

Commit dfa0954

Browse files
committed
fix: replace missing progress drawable class with clip
uwu_progress_drawable referenced com.neko.widget.RoundedCornerProgressDrawable, which does not exist and would fail to inflate if the drawable were used. Swap it for a standard <clip> around uwu_progress_full_drawable.
1 parent ff3595b commit dfa0954

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

app/src/main/res/drawable/uwu_progress_drawable.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@
2424
<item
2525
android:gravity="fill_horizontal|center"
2626
android:id="@android:id/progress">
27-
<com.neko.widget.RoundedCornerProgressDrawable
28-
android:drawable="@drawable/uwu_progress_full_drawable" />
27+
<clip
28+
android:clipOrientation="horizontal"
29+
android:drawable="@drawable/uwu_progress_full_drawable"
30+
android:gravity="start" />
2931
</item>
3032
<item
3133
android:gravity="end|center">
@@ -65,8 +67,10 @@
6567
<item
6668
android:gravity="fill_horizontal|center"
6769
android:id="@android:id/progress">
68-
<com.neko.widget.RoundedCornerProgressDrawable
69-
android:drawable="@drawable/uwu_progress_full_drawable" />
70+
<clip
71+
android:clipOrientation="horizontal"
72+
android:drawable="@drawable/uwu_progress_full_drawable"
73+
android:gravity="start" />
7074
</item>
7175
<item
7276
android:gravity="end|center">

0 commit comments

Comments
 (0)