fix: align ON/OFF/always to fixed column flush with right edge in Home Pages

Column at width()-6*charWidth so "always" touches the right edge;
ON and OFF start at the same x position.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-23 09:54:31 +02:00
parent 4f68e5ffba
commit 93e3a29b0d

View File

@@ -378,7 +378,7 @@ class SettingsScreen : public UIScreen {
display.print(pb);
}
display.print(homePageLabel(item));
display.setCursor(display.valCol(), y);
display.setCursor(display.width() - 6 * display.getCharWidth(), y);
if (!homePageToggleable(item))
display.print("always");
else