diff --git a/ChangeLog.md b/ChangeLog.md index e8a936cdb..4703684c8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -14,11 +14,13 @@ ### Updated: - Apps: - USB/BT Remote: Added back new UI for Mouse Clicker from OFW (by @gsurkov) + - UL: USB/BT Remote: Fix Mouse Jiggler Stealth icon in BT (by @xMasterX) - OFW: JS: Refactored and fixed `math` and `textbox` modules (by @nminaylov & @skotopes) ### Fixed: - Storage: Fix process aliases in rename (by @Willy-JL) - OFW: Settings: Refactor fixes (by @Astrrra) +- OFW: GUI: Fix calling both `view_free_model()` and `view_free()` (by @Willy-JL) ### Removed: - Nothing diff --git a/applications/system/hid_app/views/hid_mouse_jiggler_stealth.c b/applications/system/hid_app/views/hid_mouse_jiggler_stealth.c index 736cfbac0..d031b4c5d 100644 --- a/applications/system/hid_app/views/hid_mouse_jiggler_stealth.c +++ b/applications/system/hid_app/views/hid_mouse_jiggler_stealth.c @@ -34,7 +34,11 @@ static void hid_mouse_jiggler_stealth_draw_callback(Canvas* canvas, void* contex // Title "Mouse Jiggler" canvas_set_font(canvas, FontPrimary); +#ifdef HID_TRANSPORT_BLE + elements_multiline_text_aligned(canvas, 17, 4, AlignLeft, AlignTop, "Mouse Jiggler Stealth"); +#else elements_multiline_text_aligned(canvas, 10, 2, AlignLeft, AlignTop, "Mouse Jiggler Stealth"); +#endif // Display the current min interval in minutes canvas_set_font(canvas, FontSecondary); // Assuming there's a smaller font available