mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-14 08:39:31 +02:00
2019-12-11 Fred Gleason <fredg@paravelsystems.com>
* Modified the Full Log widget in rdairplay(1) to display logged start times even when the references cart does not exist.
This commit is contained in:
parent
edec9cb07d
commit
b2459960be
@ -19337,3 +19337,6 @@
|
||||
2019-12-11 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in rdlogmanager(1) that caused incorrect
|
||||
logged start times to be generated for imported events.
|
||||
2019-12-11 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Modified the Full Log widget in rdairplay(1) to display logged
|
||||
start times even when the references cart does not exist.
|
||||
|
@ -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]"));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user