2022-04-29 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcatch(1) where creating a new event
	using the 'Save As' button would fail to send notifications of
	the added event.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-04-29 11:52:58 -04:00
parent ebe1bcc3f7
commit 7f9e8f4739
2 changed files with 10 additions and 0 deletions

View File

@ -22996,3 +22996,7 @@
2022-04-29 Fred Gleason <fredg@paravelsystems.com>
* Added a 'StayOnTop=' directive to the '[SoftKeys]' section of
rd.conf(5).
2022-04-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) where creating a new event
using the 'Save As' button would fail to send notifications of
the added event.

View File

@ -1216,6 +1216,12 @@ void MainWidget::ProcessNewRecords(std::vector<int> *adds)
{
for(unsigned i=0;i<adds->size();i++) {
catch_recordings_model->addRecord(adds->at(i));
RDNotification *notify=
new RDNotification(RDNotification::CatchEventType,
RDNotification::ModifyAction,adds->at(i));
rda->ripc()->sendNotification(*notify);
delete notify;
}
}