mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-23 16:11:41 +02:00
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:
parent
ebe1bcc3f7
commit
7f9e8f4739
@ -22996,3 +22996,7 @@
|
|||||||
2022-04-29 Fred Gleason <fredg@paravelsystems.com>
|
2022-04-29 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Added a 'StayOnTop=' directive to the '[SoftKeys]' section of
|
* Added a 'StayOnTop=' directive to the '[SoftKeys]' section of
|
||||||
rd.conf(5).
|
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.
|
||||||
|
@ -1216,6 +1216,12 @@ void MainWidget::ProcessNewRecords(std::vector<int> *adds)
|
|||||||
{
|
{
|
||||||
for(unsigned i=0;i<adds->size();i++) {
|
for(unsigned i=0;i<adds->size();i++) {
|
||||||
catch_recordings_model->addRecord(adds->at(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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user