diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf7803..3169a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [Unreleased] + +### Changed + +- Fixed a bug that caused the "client pkts" and "server pkts" counts in the stream reassembly view not to be + updated. + ## [2.3.0] - 2021-09-04 ### Added diff --git a/widgets/streamwidget/streamwidget.go b/widgets/streamwidget/streamwidget.go index e7ac9fb..59dee3e 100644 --- a/widgets/streamwidget/streamwidget.go +++ b/widgets/streamwidget/streamwidget.go @@ -901,7 +901,7 @@ func (w *Widget) AddChunkEntire(ch streams.IChunk, app gowid.IApp) { w.updateChunkModel(i, w.displayAs, app) } - w.doMenuUpdate = true + w.updateConvMenuWidget(app) w.data.currentChunk++ }