diff --git a/GreadyPoang/Views/RoundRunningView.xaml.cs b/GreadyPoang/Views/RoundRunningView.xaml.cs index e2d8035..8077683 100644 --- a/GreadyPoang/Views/RoundRunningView.xaml.cs +++ b/GreadyPoang/Views/RoundRunningView.xaml.cs @@ -62,7 +62,7 @@ public partial class RoundRunningView : ContentPage var value = column.Values[rowIndex]; var cell = CreateCell(value); ScoreGrid.Children.Add(cell); - Grid.SetRow(cell, rowIndex + 1); // +1 för att hoppa över rubrikraden + Grid.SetRow(cell, column.Values.Count - rowIndex); // +1 för att hoppa över rubrikraden Grid.SetColumn(cell, colIndex); }