Skip to content

Commit

Permalink
Do not limit train elapsed length.
Browse files Browse the repository at this point in the history
  • Loading branch information
horacekj committed Jan 21, 2023
1 parent e5be12e commit 7964b99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tables/DataHV.pas
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ procedure THVTableData.UpdateLine(HV: THV);
Self.LV.Items[line].SubItems[6] := 'sudý';
end;

Self.LV.Items[line].SubItems[20] := Format('%5.2f', [state.traveled_forward]);
Self.LV.Items[line].SubItems[21] := Format('%5.2f', [state.traveled_backward]);
Self.LV.Items[line].SubItems[20] := Format('%.2f', [state.traveled_forward]);
Self.LV.Items[line].SubItems[21] := Format('%.2f', [state.traveled_backward]);

if (state.area <> nil) then
Self.LV.Items[line].SubItems[7] := state.area.name
Expand Down

0 comments on commit 7964b99

Please sign in to comment.