refactor: remove transport status from grid status line

This commit is contained in:
Loic Coenen
2026-05-01 16:48:06 +00:00
committed by Loic Coenen (aider)
parent f1f1c02314
commit 89e7f00a0c

5
tui.c
View File

@@ -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) {