mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 15:41:13 +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:
@@ -2252,9 +2252,10 @@ void RDSvc::ProcessBypassMusicEvents(RDLog *log,RDLogModel *dst_model,
|
||||
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->logLine(dst_model->lineCount()-1))=*logline;
|
||||
*(dst_model->logLine(dst_model->lineCount()-1))=*link_logline;
|
||||
dst_model->logLine(dst_model->lineCount()-1)->
|
||||
setId(dst_model->nextId());
|
||||
}
|
||||
|
Reference in New Issue
Block a user