From 89e7f00a0c9ed4aaf0ef72d097a828d0809fd2be Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Fri, 1 May 2026 16:48:06 +0000 Subject: [PATCH] refactor: remove transport status from grid status line --- tui.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tui.c b/tui.c index 0509834..9f86ed7 100644 --- a/tui.c +++ b/tui.c @@ -105,10 +105,9 @@ static void draw_grid(void) { clip_idx, clip_state_to_string(clip->state), clip->buffer_size); mvprintw(GRID_ROWS * CELL_HEIGHT + 2, 0, - "Quantize: %s | Threshold: %u | Transport: %s", + "Quantize: %s | Threshold: %u", quantize_mode_to_string((QuantizeMode)atomic_load(&g_engine->quantize_mode_atomic)), - (unsigned int)atomic_load(&g_engine->quantize_threshold_atomic), - atomic_load(&g_engine->transport_rolling) ? "Rolling" : "Stopped"); + (unsigned int)atomic_load(&g_engine->quantize_threshold_atomic)); // Draw help if active if (show_help) {