diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-10-07 18:49:36 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-10-07 18:49:36 +0200 |
commit | 2cb0f9837eff48dd6579e456beb33981f4fce6d8 (patch) | |
tree | f6dce1acfa6ebb583927a60230ed740d5035a3c2 | |
parent | 6d4fd7441d371db47a2084c93702f9db8710a32e (diff) | |
download | saw-2cb0f9837eff48dd6579e456beb33981f4fce6d8.zip |
Disable Unison UI for now
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | source/saw/main.c | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -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, |