From 1e8c7a50b4295383b0d16ab105a4b8f26bbaa438 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Thu, 24 Aug 2023 16:35:32 +0200 Subject: Fix a couple of UI bugs --- src/main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index fe3dba0..0efcc73 100644 --- a/src/main.c +++ b/src/main.c @@ -14,6 +14,8 @@ WITH REGARD TO THIS SOFTWARE. // UI tweaks. // - Add custom user themes // - Animations for cursor movement/current step highlight. (A fade out maybe?) +// - Should the channel parameters reset after leaving them? Is it more or +// less confusing this way? // // Quality of life improvements. // - When not on play mode, adjusting a note or a parameter triggers the sound. @@ -66,6 +68,11 @@ WITH REGARD TO THIS SOFTWARE. // - Add CREDITS to the documentation for now, should probably be a menu item // later. // +// Bug notes (catbeat): +// +// + Bug: GUI scale disappeared +// + Bug: cut and pasted note on noise voice and showed parameter paste but +// not note, had to push B again for note #include "gba/gba.h" @@ -186,6 +193,7 @@ update(void) { redraw_play_pause = true; redraw_piano_note = true; redraw_params = true; + redraw_scale = true; } last_trig_loc = trig_selection_loc; last_channel_loc = channel_selection_loc; -- cgit v1.2.1