Merge pull request #20400 from peppy/fix-argon-reverse-arrow-colour

Fix argon reverse arrow becoming white after switching skins
This commit is contained in:
Dan Balasescu
2022-09-22 19:01:19 +09:00
committed by GitHub

View File

@ -48,7 +48,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
};
accentColour = hitObject.AccentColour.GetBoundCopy();
accentColour.BindValueChanged(accent => icon.Colour = accent.NewValue.Darken(4));
accentColour.BindValueChanged(accent => icon.Colour = accent.NewValue.Darken(4), true);
}
}
}