From 8012278483f938b55a61c61822c66e2214113904 Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Sun, 24 May 2026 00:56:43 +0200 Subject: [PATCH] fix(ui): remove space in hibernate hint formatting --- examples/companion_radio/ui-new/UITask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index 0ed60fb4..1b9c84ec 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -762,7 +762,7 @@ public: const int lh1 = display.getLineHeight(); if (text_y + lh1 <= display.height()) { char hib_hint[32]; - snprintf(hib_hint, sizeof(hib_hint), "hibernate: %s", PRESS_LABEL); + snprintf(hib_hint, sizeof(hib_hint), "hibernate:%s", PRESS_LABEL); if (display.getTextWidth(hib_hint) < display.width()) { display.drawTextCentered(display.width() / 2, text_y, hib_hint); } else {