1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

fix compile

This commit is contained in:
OliBomby 2023-12-30 01:12:23 +01:00
parent f649fa106f
commit 1c75357d77

View File

@ -53,13 +53,14 @@ namespace osu.Game.Tournament.Screens.Editors
ScrollContent.Add(grid = new RectangularPositionSnapGrid
{
Spacing = new Vector2(GRID_SPACING),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
BypassAutoSizeAxes = Axes.Both,
Depth = float.MaxValue
});
grid.Spacing.Value = new Vector2(GRID_SPACING);
LadderInfo.Matches.CollectionChanged += (_, _) => updateMessage();
updateMessage();
}