From d32442da9a3480201ab3208a9e0a0300c261c877 Mon Sep 17 00:00:00 2001 From: true Date: Thu, 8 Aug 2024 03:33:23 -0700 Subject: [PATCH] non-white cursor no longer stays on in programming modes --- firmware/retro_tech_fw/user/src/ui.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firmware/retro_tech_fw/user/src/ui.c b/firmware/retro_tech_fw/user/src/ui.c index d378a9c..9bf4810 100644 --- a/firmware/retro_tech_fw/user/src/ui.c +++ b/firmware/retro_tech_fw/user/src/ui.c @@ -324,12 +324,16 @@ static void ui_cursor_flash() case MODE_PROGRAM: { // cursor is on if this program is flagged as on cursor[0] = (userconf.ledprog_ena_mask & (1 << preview_idx)) ? 127 : 0; + cursor[1] = 0; + cursor[2] = 0; break; } case MODE_PARAMETER: { // cursor is on when program is being edited cursor[0] = rgb_prog_is_editing ? 127 : 0; + cursor[1] = 0; + cursor[2] = 0; break; }