From 4c6c09b1f6debdfaea80bf5ad56dee25089ef49b Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Thu, 13 Jul 2023 14:47:39 +0200 Subject: Fix non-clearing params from patterns to rcol --- src/drawing.c | 2 +- src/sequencer.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/drawing.c b/src/drawing.c index 0872733..8cd63db 100644 --- a/src/drawing.c +++ b/src/drawing.c @@ -1310,7 +1310,7 @@ draw_notif_bar() { } u8 color = COL_FG; if (i == chain.current) { - color = COL_OFF; + color = COL_ACC_2; } txt_drawc_small('A' + chain.chain[i], x + 4 * k++, y, color); first = false; diff --git a/src/sequencer.c b/src/sequencer.c index 8d79c65..eeb7816 100644 --- a/src/sequencer.c +++ b/src/sequencer.c @@ -562,6 +562,7 @@ handle_pattern_selection(void) { } } if (key_tap(KEY_LEFT)) { + redraw_params = true; input_handler = handle_right_col_selection; right_col_selection_loc = R_COL_BPM; switch (pattern_selection_loc) { -- cgit v1.2.1