mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-29 15:12:34 +02:00
2022-10-20 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that caused the Chain-To event to be dropped when linking music events in bypass grid mode. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
a24ba90897
commit
505360007a
@ -23540,3 +23540,6 @@
|
|||||||
all services, with a 'Has Grid' column.
|
all services, with a 'Has Grid' column.
|
||||||
2022-10-20 Fred Gleason <fredg@paravelsystems.com>
|
2022-10-20 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Documented grid processing bypass in the Operations Guide.
|
* Documented grid processing bypass in the Operations Guide.
|
||||||
|
2022-10-20 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdlogmanager(1) that caused the Chain-To event
|
||||||
|
to be dropped when linking music events in bypass grid mode.
|
||||||
|
@ -2252,9 +2252,10 @@ void RDSvc::ProcessBypassMusicEvents(RDLog *log,RDLogModel *dst_model,
|
|||||||
delete q;
|
delete q;
|
||||||
}
|
}
|
||||||
|
|
||||||
if((logline!=NULL)&&(logline->type()==RDLogLine::Chain)) {
|
if((link_logline!=NULL)&&(link_logline->type()==RDLogLine::Chain)) {
|
||||||
|
printf("Chain to!\n");
|
||||||
dst_model->insert(dst_model->lineCount(),1,true);
|
dst_model->insert(dst_model->lineCount(),1,true);
|
||||||
*(dst_model->logLine(dst_model->lineCount()-1))=*logline;
|
*(dst_model->logLine(dst_model->lineCount()-1))=*link_logline;
|
||||||
dst_model->logLine(dst_model->lineCount()-1)->
|
dst_model->logLine(dst_model->lineCount()-1)->
|
||||||
setId(dst_model->nextId());
|
setId(dst_model->nextId());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user