diff --git a/RaceOverlay/Overlays/Standings/StandingsRow.cs b/RaceOverlay/Overlays/Standings/StandingsRow.cs index 67af15e..79af517 100644 --- a/RaceOverlay/Overlays/Standings/StandingsRow.cs +++ b/RaceOverlay/Overlays/Standings/StandingsRow.cs @@ -163,7 +163,7 @@ public StandingsRow(string driverName, int carNr, int position, float lastLap, f gapTextBlock.TextAlignment = TextAlignment.Center; gapTextBlock.Width = 45; - gapTextBlock.SetValue(Grid.ColumnProperty, 6); + gapTextBlock.SetValue(Grid.ColumnProperty, 7); gapTextBlock.SetValue(Grid.RowProperty, 0); Children.Add(gapTextBlock); @@ -172,7 +172,7 @@ public StandingsRow(string driverName, int carNr, int position, float lastLap, f intervalTextBlock.TextAlignment = TextAlignment.Center; intervalTextBlock.Width = 45; - intervalTextBlock.SetValue(Grid.ColumnProperty, 7); + intervalTextBlock.SetValue(Grid.ColumnProperty, 8); intervalTextBlock.SetValue(Grid.RowProperty, 0); Children.Add(intervalTextBlock); }