From a14d068ada2e990e66ea2f70d3fb5c5a40c0abf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Monta=C3=B1es=20Ojados?= Date: Sat, 17 Jan 2026 17:08:25 +0100 Subject: [PATCH] Update TUI footer legend with VAD controls --- cmd/tui/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tui/model.go b/cmd/tui/model.go index a34d5c0..6a13686 100644 --- a/cmd/tui/model.go +++ b/cmd/tui/model.go @@ -1071,7 +1071,7 @@ func (m *Model) View() string { if m.showLog { logHelp = "L chat" } - help := lipgloss.NewStyle().Faint(true).Render(fmt.Sprintf("↑↓ navigate │ Enter join │ Tab switch │ %s │ V talk │ M mute │ +/- vol │ q quit", logHelp)) + help := lipgloss.NewStyle().Faint(true).Render(fmt.Sprintf("↑↓ nav │ Ent join │ Tab switch │ %s │ V PTT │ G VAD │ ^↕↔ thresh │ M mute │ +/- vol │ q quit", logHelp)) // Combine panels panels := lipgloss.JoinHorizontal(lipgloss.Top, channelPanel, rightPanel)