diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-06 23:14:09 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-06 23:14:09 +0200 |
| commit | 106fcb3fe959966dec19d1242ff87df644a43fad (patch) | |
| tree | 5152e1d4dadbf991040d0db069c8d76db889364d /internal/tui/dashboard/model.go | |
| parent | 013e46d7856a604d4890a880b8bbfb4b8c58202b (diff) | |
fix(tui): restore bubble modes and stabilize flame zoom lineage
Diffstat (limited to 'internal/tui/dashboard/model.go')
| -rw-r--r-- | internal/tui/dashboard/model.go | 6 |
1 files changed, 3 insertions, 3 deletions
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: |
