mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2017-07-28 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdevent_line.cpp' that caused embedded traffic import events to be assigned incorrect link parameters when scheduled immediately after a voice track.
This commit is contained in:
@@ -15819,3 +15819,7 @@
|
|||||||
2017-06-02 Fred Gleason <fredg@paravelsystems.com>
|
2017-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Updated 'NEWS'.
|
* Updated 'NEWS'.
|
||||||
* Incremented the package version to 2.16.0.
|
* Incremented the package version to 2.16.0.
|
||||||
|
2017-07-28 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in 'lib/rdevent_line.cpp' that caused embedded traffic
|
||||||
|
import events to be assigned incorrect link parameters when scheduled
|
||||||
|
immediately after a voice track.
|
||||||
|
@@ -1040,8 +1040,14 @@ bool RDEventLine::linkLog(RDLogEvent *e,int next_id,const QString &svcname,
|
|||||||
logline->setTransType(trans_type);
|
logline->setTransType(trans_type);
|
||||||
logline->setEventLength(event_length);
|
logline->setEventLength(event_length);
|
||||||
logline->setLinkEventName(event_nested_event);
|
logline->setLinkEventName(event_nested_event);
|
||||||
logline->setLinkStartTime(link_logline->linkStartTime());
|
if((!q->value(12).isNull())&&(!q->value(13).isNull())) {
|
||||||
logline->setLinkLength(link_logline->linkLength());
|
logline->setLinkStartTime(q->value(12).toTime());
|
||||||
|
logline->setLinkLength(q->value(13).toInt());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
logline->setLinkStartTime(link_logline->linkStartTime());
|
||||||
|
logline->setLinkLength(link_logline->linkLength());
|
||||||
|
}
|
||||||
logline->setLinkStartSlop(link_logline->linkStartSlop());
|
logline->setLinkStartSlop(link_logline->linkStartSlop());
|
||||||
logline->setLinkEndSlop(link_logline->linkEndSlop());
|
logline->setLinkEndSlop(link_logline->linkEndSlop());
|
||||||
logline->setLinkId(link_logline->linkId());
|
logline->setLinkId(link_logline->linkId());
|
||||||
|
Reference in New Issue
Block a user