1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

GUI: Fix widget text scroll with 256+ lines (#4160)

Co-authored-by: hedger <hedger@users.noreply.github.com>
This commit is contained in:
WillyJL
2025-03-31 15:11:05 +00:00
committed by GitHub
parent cf63b38ce0
commit 3bd6ee03ef

View File

@@ -19,8 +19,8 @@ typedef struct {
uint8_t width;
uint8_t height;
FuriString* text;
uint8_t scroll_pos_total;
uint8_t scroll_pos_current;
uint16_t scroll_pos_total;
uint16_t scroll_pos_current;
bool text_formatted;
} WidgetElementTextScrollModel;