1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 17:07:38 +08:00

Update with underlying changes

This commit is contained in:
Dean Herbert 2020-10-06 19:34:21 +09:00
parent 87d4e86cad
commit 461be02e6f

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Edit.Setup
[BackgroundDependencyLoader]
private void load()
{
Flow.Children = new Drawable[]
Children = new Drawable[]
{
new OsuSpriteText
{
@ -76,7 +76,7 @@ namespace osu.Game.Screens.Edit.Setup
},
};
foreach (var item in Flow.OfType<LabelledSliderBar<float>>())
foreach (var item in Children.OfType<LabelledSliderBar<float>>())
item.Current.ValueChanged += onValueChanged;
}