1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00

Fix artist being the opposite value

This commit is contained in:
DrabWeb 2017-05-20 01:25:42 -03:00
parent 48417beb81
commit 43bd0f686b

View File

@ -90,6 +90,7 @@ namespace osu.Game.Overlays.Music
artistBind = localisation.GetUnicodePreference(metadata.ArtistUnicode, metadata.Artist);
titleBind.ValueChanged += newText => recreateText();
artistBind.ValueChanged += newText => recreateText();
titleBind.TriggerChange();
}