From 106fcb3fe959966dec19d1242ff87df644a43fad Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 6 Mar 2026 23:14:09 +0200 Subject: fix(tui): restore bubble modes and stabilize flame zoom lineage --- internal/tui/dashboard/model.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/tui/dashboard/model.go') diff --git a/internal/tui/dashboard/model.go b/internal/tui/dashboard/model.go index fb509b0..5949755 100644 --- a/internal/tui/dashboard/model.go +++ b/internal/tui/dashboard/model.go @@ -728,12 +728,12 @@ func (m *Model) setTabVizMode(tab Tab, mode tabVizMode) { func (m Model) allowedVizModes(tab Tab) []tabVizMode { switch tab { case TabSyscalls: - return []tabVizMode{tabVizModeTable, tabVizModeTreemap} + return []tabVizMode{tabVizModeTable, tabVizModeBubbles, tabVizModeTreemap} case TabProcesses: - return []tabVizMode{tabVizModeTable, tabVizModeTreemap} + return []tabVizMode{tabVizModeTable, tabVizModeBubbles, tabVizModeTreemap} case TabFiles: if m.filesDirGrouped { - return []tabVizMode{tabVizModeTable, tabVizModeTreemap} + return []tabVizMode{tabVizModeTable, tabVizModeBubbles, tabVizModeTreemap} } return []tabVizMode{tabVizModeTable} default: -- cgit v1.2.3