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

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);