Updates icons to match original Lyra

Adds a unique icon for firmware bins in the file browser
This commit is contained in:
Justin Mitchell
2026-06-17 01:31:07 -04:00
parent 4f55444f67
commit 0b575d1965
6 changed files with 33 additions and 31 deletions
+3
View File
@@ -196,6 +196,9 @@ UIIcon UITheme::getFileIcon(const std::string& filename) {
if (FsHelpers::hasBmpExtension(filename)) {
return Image;
}
if (FsHelpers::checkFileExtension(filename, ".bin")) {
return Firmware;
}
return File;
}