From 3e4fec78318a03352c5f20cf612f0551a048bb6a Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Thu, 1 Jan 2026 19:54:38 -0500 Subject: [PATCH] Add button button hints to the Keyboard screen to match the rest of the UI --- src/activities/util/KeyboardEntryActivity.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/activities/util/KeyboardEntryActivity.cpp b/src/activities/util/KeyboardEntryActivity.cpp index b76de557..c580e0f4 100644 --- a/src/activities/util/KeyboardEntryActivity.cpp +++ b/src/activities/util/KeyboardEntryActivity.cpp @@ -329,9 +329,9 @@ void KeyboardEntryActivity::render() const { } } - // Draw help text at absolute bottom of screen (consistent with other screens) - const auto pageHeight = renderer.getScreenHeight(); - renderer.drawText(SMALL_FONT_ID, 10, pageHeight - 30, "Navigate: D-pad | Select: OK | Cancel: BACK"); + // Draw help text + const auto labels = mappedInput.mapLabels("« Back", "Select", "Left", "Right"); + renderer.drawButtonHints(UI_10_FONT_ID, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); }