From 47c75658e94b5c1fefdd95cc5d1f5113747a7686 Mon Sep 17 00:00:00 2001 From: Jonas Diemer Date: Fri, 19 Dec 2025 13:49:55 +0100 Subject: [PATCH] Align popup with sleep button. --- src/activities/boot_sleep/SleepActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/boot_sleep/SleepActivity.cpp b/src/activities/boot_sleep/SleepActivity.cpp index 2be87bda..87a1ccfc 100644 --- a/src/activities/boot_sleep/SleepActivity.cpp +++ b/src/activities/boot_sleep/SleepActivity.cpp @@ -81,7 +81,7 @@ void SleepActivity::renderPopup(const char* message) const { constexpr int margin = 20; // Round all coordinates to 8 pixel boundaries const int x = ((GfxRenderer::getScreenWidth() - textWidth - margin * 2) / 2 + 7) / 8 * 8; - constexpr int y = 56; + constexpr int y = 117; const int w = (textWidth + margin * 2 + 7) / 8 * 8; const int h = (renderer.getLineHeight(READER_FONT_ID) + margin * 2 + 7) / 8 * 8; // renderer.clearScreen();