From fabaeba6937b8c675bd15a9a641201d9720410c8 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Wed, 3 Aug 2022 11:41:12 -0400 Subject: [PATCH] 2022-08-03 Fred Gleason * Fixed a bug in rdcatch(1) that could cause highlighting of the 'next event' to disappear after changing the filtering settings. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ rdcatch/rdcatch.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3b526528..ead0b4f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23211,3 +23211,6 @@ 2022-08-03 Fred Gleason * Modified the endpoint naming format for Software Authority Protocol devices to match that used in Drouter. +2022-08-03 Fred Gleason + * Fixed a bug in rdcatch(1) that could cause highlighting of the + 'next event' to disappear after changing the filtering settings. diff --git a/rdcatch/rdcatch.cpp b/rdcatch/rdcatch.cpp index e8833442..a858e7bd 100644 --- a/rdcatch/rdcatch.cpp +++ b/rdcatch/rdcatch.cpp @@ -997,6 +997,7 @@ void MainWidget::filterChangedData(bool state) { // printf("filterChangedData(%d)\n",state); + QTime next_time; QString sql; if(catch_show_active_box->isChecked()) { @@ -1087,6 +1088,7 @@ void MainWidget::filterChangedData(bool state) sql=sql.left(sql.length()-2); catch_recordings_model->setFilterSql("where "+sql); } + nextEventData(); }