From 1279ffb8f2efba54ff005cce91ba65c149cb1ee6 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 25 Feb 2026 09:23:19 +0200 Subject: Improve TUI layout and increase sparkline height --- internal/tui/dashboard/model.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'internal/tui/dashboard/model.go') diff --git a/internal/tui/dashboard/model.go b/internal/tui/dashboard/model.go index 407802f..78da351 100644 --- a/internal/tui/dashboard/model.go +++ b/internal/tui/dashboard/model.go @@ -127,7 +127,7 @@ func (m Model) handleKey(msg tea.KeyMsg) (tea.Model, tea.Cmd) { m.activeTab = TabLatency handled = true case key.Matches(msg, m.keys.Six): - m.activeTab = TabGaps + m.activeTab = TabStream handled = true case key.Matches(msg, m.keys.Seven): m.activeTab = TabStream @@ -278,9 +278,7 @@ func renderActiveTab(tab Tab, snap *statsengine.Snapshot, streamModel *eventstre case TabProcesses: return renderProcessesWithOffset(snap, width, height, processesOffset) case TabLatency: - return renderLatencyTab(snap, width, height) - case TabGaps: - return renderGapsTab(snap, width, height) + return renderLatencyGapsTab(snap, width, height) default: return common.PanelStyle.Render("Unknown tab") } -- cgit v1.2.3