From 7f022f6b038d3bcfb008cd3c93801083e37a8c58 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sun, 10 Sep 2023 01:22:14 +0200 Subject: [PATCH] C64 text overflow fix --- applications/services/gui/modules/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/gui/modules/menu.c b/applications/services/gui/modules/menu.c index 61b0910b4..41a5d321f 100644 --- a/applications/services/gui/modules/menu.c +++ b/applications/services/gui/modules/menu.c @@ -315,7 +315,7 @@ static void menu_draw_callback(Canvas* canvas, void* _model) { furi_string_replace_at(name, 0, 0, indexstr); elements_scrollable_text_line( - canvas, x_off + 2, y_off + 12, 64, name, scroll_counter, false); + canvas, x_off + 2, y_off + 12, 60, name, scroll_counter, false); if(selected) { canvas_set_color(canvas, ColorBlack);