1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Fix tests

This commit is contained in:
smoogipoo 2021-09-15 13:26:39 +09:00
parent c009e1473d
commit 34bde293ab

View File

@ -21,6 +21,8 @@ namespace osu.Game.Rulesets.Mania.Skinning.Legacy
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
private Container directionContainer;
[CanBeNull]
private Drawable noteAnimation;
private float? minimumColumnWidth;
@ -41,7 +43,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Legacy
Origin = Anchor.BottomCentre,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Child = noteAnimation = GetAnimation(skin)
Child = noteAnimation = GetAnimation(skin) ?? Empty()
};
direction.BindTo(scrollingInfo.Direction);