mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +01:00
2021-08-13 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlibrary(1) that caused misaligned columns when generating a Cut Report. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -209,7 +209,7 @@ void ListReports::GenerateLogReport(QString *report)
|
||||
*report+=" ";
|
||||
}
|
||||
if(!logline->startTime(RDLogLine::Imported).isNull()) {
|
||||
*report+=RDReport::leftJustify(rda->tenthsTimeString(logline->startTime(RDLogLine::Logged),true),13)+" ";
|
||||
*report+=RDReport::leftJustify(rda->tenthsTimeString(logline->startTime(RDLogLine::Logged),"0"),13)+" ";
|
||||
}
|
||||
else {
|
||||
*report+=" ";
|
||||
@@ -235,7 +235,7 @@ void ListReports::GenerateLogReport(QString *report)
|
||||
*report+=" ";
|
||||
*report+=" ";
|
||||
*report+=" :00 ";
|
||||
*report+=RDReport::leftJustify(logline->markerComment(),30)+" ";
|
||||
*report+=RDReport::leftJustify(logline->markerComment(),33)+" ";
|
||||
*report+=" ";
|
||||
break;
|
||||
|
||||
@@ -260,7 +260,8 @@ void ListReports::GenerateLogReport(QString *report)
|
||||
*report+=" ";
|
||||
*report+=" ";
|
||||
*report+=" ";
|
||||
*report+=RDReport::leftJustify(logline->markerLabel(),30)+" ";
|
||||
*report+=RDReport::leftJustify(logline->markerLabel(),33)+" ";
|
||||
*report+=" ";
|
||||
break;
|
||||
|
||||
case RDLogLine::OpenBracket:
|
||||
|
||||
@@ -531,7 +531,7 @@ void MainWidget::reportData()
|
||||
// Voice Tracks
|
||||
//
|
||||
report+=
|
||||
QString().sprintf("%3u/%-3u ",q->value(8).toUInt(),q->value(7).toUInt());
|
||||
QString().sprintf("%3u/%-3u ",q->value(7).toUInt(),q->value(8).toUInt());
|
||||
|
||||
//
|
||||
// Start Date
|
||||
|
||||
Reference in New Issue
Block a user