Merge branch 'fix/widget-textscroll-256' into mntm-dev

This commit is contained in:
Willy-JL
2025-03-26 11:33:44 +00:00
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -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)
@@ -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;