diff --git a/ChangeLog b/ChangeLog index 580aa864..6cdc1ea2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21399,3 +21399,6 @@ scripts into the build system. 2021-04-05 Fred Gleason * Fixed regressions that broke the 'make dist' target. +2021-04-06 Fred Gleason + * Fixed a bug in rdairplay(1) that caused the Talk Timer to + fail to be populated when adding new carts to a log. diff --git a/lib/rdlog_line.cpp b/lib/rdlog_line.cpp index 7b791672..d94e82d7 100644 --- a/lib/rdlog_line.cpp +++ b/lib/rdlog_line.cpp @@ -1908,6 +1908,8 @@ RDLogLine::State RDLogLine::setEvent(int mach,RDLogLine::TransType next_type, log_segue_start_point[0]=-1; log_segue_end_point[0]=-1; } + log_talk_start=q->value(6).toInt(); + log_talk_end=q->value(7).toInt(); if(log_talk_start>=0) { log_talk_start=(int)((double)log_talk_start*time_ratio); log_talk_end=(int)(q->value(7).toDouble()*time_ratio);