From d705c85703863c1d7394ffbd3cff4e581a148b95 Mon Sep 17 00:00:00 2001 From: ConnorMolz <114417919+ConnorMolz@users.noreply.github.com> Date: Mon, 26 May 2025 11:30:05 +0200 Subject: [PATCH] Fix Row --- RaceOverlay/Overlays/Standings/StandingsRow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }