C64 text overflow fix

This commit is contained in:
Willy-JL
2023-09-10 01:22:14 +02:00
parent a7a5503e27
commit 7f022f6b03
+1 -1
View File
@@ -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);