Fix slider tick colour not being applied properly

This commit is contained in:
Dean Herbert 2022-09-23 21:11:25 +09:00
parent 2a5556de33
commit 965d0603ce

View File

@ -34,7 +34,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
};
accentColour = hitObject.AccentColour.GetBoundCopy();
accentColour.BindValueChanged(accent => BorderColour = accent.NewValue);
accentColour.BindValueChanged(accent => BorderColour = accent.NewValue, true);
}
}
}