Skip to content

Commit 6d3a71d

Browse files
committed
ProtocolAnalyzerDialog: make sure title remains synchronized with filter name. Fixes #923.
1 parent ec23f9b commit 6d3a71d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

release-notes/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ This is a running list of significant bug fixes and new features since the last
1010
## Bugs fixed since v0.1
1111

1212
* Crash in protocol analyzer dialog caused by deleting packet manager during a partial filter graph refresh (https://github.com/ngscopeclient/scopehal-apps/issues/925)
13+
* Crash with vk::OutOfHostMemoryError when application is minimized on a Windows system with an Intel ARC GPU (https://github.com/ngscopeclient/scopehal-apps/issues/893)
14+
* Incorrect buffer size calculation in DeEmbedFilter unit test causing intermittent crashes of the test case in CI (no github ticket)
1315
* (partial) Incorrect version dependencies on Debian/Ubuntu packages (https://github.com/ngscopeclient/scopehal-apps/issues/896)
1416
* (partial) DPI scaling issues in the filter graph editor (https://github.com/ngscopeclient/scopehal-apps/issues/868)
15-
* Crash with vk::OutOfHostMemoryError when application is minimized on a Windows system with an Intel ARC GPU (https://github.com/ngscopeclient/scopehal-apps/issues/893)
1617
* Incorrect loading of CSV files with Windows line endings (https://github.com/ngscopeclient/scopehal/issues/1002)
17-
* Incorrect buffer size calculation in DeEmbedFilter unit test causing intermittent crashes of the test case in CI (no github ticket)
1818
* ThunderScope: trigger position would occasionally be corrupted and get stuck at -9223 seconds (no github ticket)
1919
* Typing a new trigger position into the text box in the trigger properties dialog does not actually change the trigger position in hardware (no github ticket)
20+
* Protocol analyzer dialogs still show the old title if a filter is renamed (https://github.com/ngscopeclient/scopehal-apps/issues/923)
2021

2122
## Other changes since v0.1
2223

src/ngscopeclient/ProtocolAnalyzerDialog.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ void ProtocolAnalyzerDialog::SetFilterExpression(const string& f)
9393
*/
9494
bool ProtocolAnalyzerDialog::DoRender()
9595
{
96+
//Keep title in sync
97+
m_title = string("Protocol: ") + m_filter->GetDisplayName();
98+
9699
static ImGuiTableFlags flags =
97100
ImGuiTableFlags_Resizable |
98101
ImGuiTableFlags_BordersOuter |

0 commit comments

Comments
 (0)