Make labels consistent

This commit is contained in:
Dave Allie 2026-01-21 22:34:23 +11:00
parent 33b59ac56f
commit d03105fe66
No known key found for this signature in database
GPG Key ID: F2FDDB3AD8D0276F
2 changed files with 2 additions and 4 deletions

View File

@ -537,7 +537,7 @@ void HomeActivity::render() {
renderer.drawText(UI_10_FONT_ID, textX, textY, label, !selected);
}
const auto labels = mappedInput.mapLabels("", "Confirm", "Up", "Down");
const auto labels = mappedInput.mapLabels("", "Select", "Up", "Down");
renderer.drawButtonHints(UI_10_FONT_ID, labels.btn1, labels.btn2, labels.btn3, labels.btn4);
const bool showBatteryPercentage =

View File

@ -323,9 +323,7 @@ void MyLibraryActivity::render() const {
renderer.drawSideButtonHints(UI_10_FONT_ID, ">", "<");
// Draw bottom button hints
// In Files tab, show "BACK" when in subdirectory, "HOME" when at root
const char* backLabel = (currentTab == Tab::Files && basepath != "/") ? "BACK" : "HOME";
const auto labels = mappedInput.mapLabels(backLabel, "OPEN", "<", ">");
const auto labels = mappedInput.mapLabels("« Back", "Open", "<", ">");
renderer.drawButtonHints(UI_10_FONT_ID, labels.btn1, labels.btn2, labels.btn3, labels.btn4);
renderer.displayBuffer();