diff options
-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, |