fix(eink): replace mute bitmap icon with text letter M

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-23 10:14:05 +02:00
parent d3589e293f
commit a0a74fe5d3

View File

@@ -303,7 +303,11 @@ class HomeScreen : public UIScreen {
#ifdef PIN_BUZZER
if (_task->isBuzzerQuiet()) {
display.setColor(DisplayDriver::LIGHT);
display.drawXbm(battLeftX - 9, 0, muted_icon, 8, 8);
display.fillRect(battLeftX - 9, 0, 7, 7);
display.setColor(DisplayDriver::DARK);
display.setCursor(battLeftX - 9, 0);
display.print("M");
display.setColor(DisplayDriver::LIGHT);
}
#endif