Replaced hourglass icon

This commit is contained in:
M66B
2020-09-28 13:28:49 +02:00
parent 35e6b360d8
commit 5b306f662d
6 changed files with 25 additions and 15 deletions

View File

@@ -380,7 +380,7 @@ class ImageHelper {
if (cached != null || view == null) {
if (view == null)
if (cached == null) {
Drawable d = res.getDrawable(R.drawable.twotone_hourglass_empty_24, theme);
Drawable d = res.getDrawable(R.drawable.twotone_hourglass_top_24, theme);
d.setBounds(0, 0, px, px);
return d;
} else
@@ -391,7 +391,7 @@ class ImageHelper {
}
final LevelListDrawable lld = new LevelListDrawable();
Drawable wait = res.getDrawable(R.drawable.twotone_hourglass_empty_24, theme);
Drawable wait = res.getDrawable(R.drawable.twotone_hourglass_top_24, theme);
lld.addLevel(1, 1, wait);
lld.setBounds(0, 0, px, px);
lld.setLevel(1);