Skip to content

Commit

Permalink
fix stealth jiggler icon with ble
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed May 19, 2024
1 parent e4ed15b commit e909818
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions applications/system/hid_app/views/hid_mouse_jiggler_stealth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e909818

Please sign in to comment.