diff --git a/ChangeLog b/ChangeLog index bb6067b6..e95f7cf8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19337,3 +19337,6 @@ 2019-12-11 Fred Gleason * Fixed a regression in rdlogmanager(1) that caused incorrect logged start times to be generated for imported events. +2019-12-11 Fred Gleason + * Modified the Full Log widget in rdairplay(1) to display logged + start times even when the references cart does not exist. diff --git a/rdairplay/list_log.cpp b/rdairplay/list_log.cpp index 7d30c29f..520bc53b 100644 --- a/rdairplay/list_log.cpp +++ b/rdairplay/list_log.cpp @@ -1252,7 +1252,13 @@ void ListLog::RefreshItem(RDListViewItem *l,int line) case RDLogLine::NoCart: if(log_line->type()==RDLogLine::Cart) { l->setPixmap(0,NULL); - l->setText(8,""); + if(log_line->startTime(RDLogLine::Logged).isNull()) { + l->setText(8,""); + } + else { + l->setText(8, + log_line->startTime(RDLogLine::Logged).toString("hh:mm:ss")); + } l->setText(3,""); l->setText(5,tr("[CART NOT FOUND]")); }