From 1563e034d3e37625671ea81c2a0f298d76fb7fe6 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Fri, 3 Apr 2026 11:51:48 +0200 Subject: [PATCH] Remove superfluous prefix str --- src/activities/boot_sleep/SleepActivity.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/activities/boot_sleep/SleepActivity.cpp b/src/activities/boot_sleep/SleepActivity.cpp index dce8de43..cfa02156 100644 --- a/src/activities/boot_sleep/SleepActivity.cpp +++ b/src/activities/boot_sleep/SleepActivity.cpp @@ -532,7 +532,8 @@ void SleepActivity::renderBitmapSleepScreen(const Bitmap& bitmap, const BookOver maxChapterWidth > 0 ? renderer.truncatedText(UI_10_FONT_ID, overlayInfo.chapterName.c_str(), maxChapterWidth) : ""; - progressStr = prefix + truncatedChapter + overlayInfo.progressSuffix; + // progressStr = prefix + truncatedChapter + overlayInfo.progressSuffix; + progressStr = truncatedChapter + overlayInfo.progressSuffix; } else { progressStr = renderer.truncatedText(UI_10_FONT_ID, overlayInfo.progressText.c_str(), availableWidth); }