diff --git a/CHANGELOG.md b/CHANGELOG.md index 419f73a5c..87695468f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -89,6 +89,7 @@ - UL: Came Atomo button hold simulation with full cycle to allow proper pairing with receiver (by @xMasterX) - OFW: NFC: ST25TB poller mode check (by @RebornedBrain) - OFW: RFID: Fix Detection Conflict Between Securakey and Noralsy Format (by @zinongli) +- OFW: GUI: Fix widget text scroll with 256+ lines (by @Willy-JL) - Furi: - OFW: EventLoop unsubscribe fix (by @gsurkov & @portasynthinca3) - OFW: Various bug fixes and improvements (by @skotopes) diff --git a/applications/services/gui/modules/widget_elements/widget_element_text_scroll.c b/applications/services/gui/modules/widget_elements/widget_element_text_scroll.c index 4c9c39dff..491ffc6bc 100644 --- a/applications/services/gui/modules/widget_elements/widget_element_text_scroll.c +++ b/applications/services/gui/modules/widget_elements/widget_element_text_scroll.c @@ -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;