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

Fix notes not updating snap colour on application

This commit is contained in:
Bartłomiej Dach 2021-09-12 17:51:15 +02:00
parent 1edf608260
commit 922fa96d41
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -66,6 +66,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
StartTimeBindable.BindValueChanged(_ => updateSnapColour(), true);
}
protected override void OnApply()
{
base.OnApply();
updateSnapColour();
}
protected override void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
{
base.OnDirectionChanged(e);