2022-08-03 Fred Gleason <fredg@paravelsystems.com>

* 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 <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-08-03 11:41:12 -04:00
parent 4af45aa3a7
commit fabaeba693
2 changed files with 5 additions and 0 deletions

View File

@ -23211,3 +23211,6 @@
2022-08-03 Fred Gleason <fredg@paravelsystems.com>
* Modified the endpoint naming format for Software Authority
Protocol devices to match that used in Drouter.
2022-08-03 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdcatch(1) that could cause highlighting of the
'next event' to disappear after changing the filtering settings.

View File

@ -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();
}