1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00

Fix loading layer being in the wrong place

This commit is contained in:
Dean Herbert 2021-04-06 16:29:07 +09:00
parent 59e6c46644
commit 1934e8e1fe

View File

@ -68,7 +68,9 @@ namespace osu.Game.Screens.Select
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = spacing },
Child = new GridContainer
Children = new Drawable[]
{
new GridContainer
{
RelativeSizeAxes = Axes.Both,
RowDimensions = new[]
@ -156,11 +158,12 @@ namespace osu.Game.Screens.Select
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 14 + spacing / 2 },
},
},
},
}
}
},
loading = new LoadingLayer(true)
},
},
}
}
}
},
};