File manager "Clean" button tweaks (#1990)

* File Manager "clean" button tweaks

* Add files via upload
This commit is contained in:
Mark Thompson 2024-03-13 16:42:40 -05:00 committed by GitHub
parent 14f42d1fe8
commit f0614c882b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 60 additions and 42 deletions

View file

@ -5797,6 +5797,44 @@ static constexpr Bitmap bitmap_icon_brightness{
{16, 16},
bitmap_icon_brightness_data};
static constexpr uint8_t bitmap_icon_clean_data[] = {
0x00,
0x00,
0xC0,
0x01,
0x20,
0x02,
0xFC,
0x1F,
0x00,
0x00,
0x08,
0x08,
0xE8,
0x08,
0xA8,
0x09,
0xA8,
0x0B,
0x28,
0x0A,
0x28,
0x0A,
0x28,
0x0A,
0xE8,
0x0B,
0x08,
0x08,
0xF0,
0x07,
0x00,
0x00,
};
static constexpr Bitmap bitmap_icon_clean{
{16, 16},
bitmap_icon_clean_data};
} /* namespace ui */
#endif /*__BITMAP_HPP__*/