1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 09:23:06 +08:00

correct type of field stageHint

This commit is contained in:
mcendu 2019-12-28 14:05:46 +08:00
parent bf162f148e
commit 5d2b5cc950

View File

@ -22,7 +22,7 @@ namespace osu.Game.Rulesets.Mania.UI.Components
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>(); private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
private readonly Drawable stageHint; private readonly StageHint stageHint;
public ColumnHitObjectArea(HitObjectContainer hitObjectContainer) public ColumnHitObjectArea(HitObjectContainer hitObjectContainer)
{ {
@ -59,6 +59,8 @@ namespace osu.Game.Rulesets.Mania.UI.Components
return; return;
accentColour = value; accentColour = value;
stageHint.AccentColour = accentColour;
} }
} }