diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-27 08:23:53 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-27 08:23:53 +0300 |
| commit | 2bca3ff0a5a00edd0dbb9e891a35c28faf27b21f (patch) | |
| tree | f4c1fb405028454b09c580e9829513e3308f928e /internal/tui/flamegraph/model.go | |
| parent | 44fa9635c64477fe2e5a1205dd68e82c7c6b6ce9 (diff) | |
flamegraph: include height/count in view cache key (2p)
Diffstat (limited to 'internal/tui/flamegraph/model.go')
| -rw-r--r-- | internal/tui/flamegraph/model.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/tui/flamegraph/model.go b/internal/tui/flamegraph/model.go index 7be2864..b73368f 100644 --- a/internal/tui/flamegraph/model.go +++ b/internal/tui/flamegraph/model.go @@ -36,6 +36,8 @@ type flameViewCacheKey struct { searchQuery string statusMessage string zoomPath string + countField string + heightField string searchActive bool showHelp bool paused bool @@ -559,6 +561,8 @@ func (m Model) currentViewCacheKey() flameViewCacheKey { searchQuery: m.searchQuery, statusMessage: m.statusMessage, zoomPath: m.zoomPath, + countField: m.countField, + heightField: m.heightField, searchActive: m.searchActive, showHelp: m.showHelp, paused: m.paused, |
