mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 16:11:12 +02:00
2022-10-20 Fred Gleason <fredg@paravelsystems.com>
* Modified the start time display string to use 'H' and 'S' to distinguish hard and soft start times. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -443,7 +443,12 @@ QString RDLogLine::startTimeText() const
|
||||
QString ret("");
|
||||
|
||||
if(timeType()==RDLogLine::Hard) {
|
||||
ret="T";
|
||||
if(graceTime()<0) {
|
||||
ret="S";
|
||||
}
|
||||
else {
|
||||
ret="H";
|
||||
}
|
||||
}
|
||||
else {
|
||||
if(!startTime(RDLogLine::Logged).isValid()) {
|
||||
|
Reference in New Issue
Block a user