1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 00:44:18 +08:00

Fix tests

This commit is contained in:
smoogipoo
2021-09-15 13:26:39 +09:00
Unverified
parent c009e1473d
commit 34bde293ab
@@ -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);