From 2cb0f9837eff48dd6579e456beb33981f4fce6d8 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Sat, 7 Oct 2023 18:49:36 +0200 Subject: Disable Unison UI for now --- TODO | 3 +++ source/saw/main.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/TODO b/TODO index 66f5e9a..eb1f758 100644 --- a/TODO +++ b/TODO @@ -40,6 +40,9 @@ To-Do list - Data: MIDI import - UI: Touchscreen support - Custom font and localization +- Drag & drop audio files +- Drag & drop sheet files +- Drag & drop project files Done diff --git a/source/saw/main.c b/source/saw/main.c index e100e61..0a60577 100644 --- a/source/saw/main.c +++ b/source/saw/main.c @@ -898,6 +898,7 @@ static void saw_ui_track(saw_track_t *track, i64 x0, i64 y0, frame_height - y0 - height + next_y - border * 2, buf, 0); next_y += text_height; + /* sprintf(buf, "%d", (i32) track->unison); nvgText(saw_nvg, x0 + border * 2, frame_height - y0 - height + next_y - border * 2, "Unison", @@ -913,6 +914,7 @@ static void saw_ui_track(saw_track_t *track, i64 x0, i64 y0, nvgText(saw_nvg, x0 + column_width + border * 2, frame_height - y0 - height + next_y - border * 2, buf, 0); next_y += text_height; + */ sprintf(buf, "%.3f", (f32) track->stereo_width); nvgText(saw_nvg, x0 + border * 2, -- cgit v1.2.3