Flip order back to original for romanisable strings

This commit is contained in:
Dean Herbert
2021-02-25 14:12:59 +09:00
parent 4cdde42228
commit e82eaffaed
13 changed files with 28 additions and 28 deletions

View File

@ -257,15 +257,15 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Text = new RomanisableString(
$"{beatmap.Metadata.Title ?? beatmap.Metadata.TitleUnicode} ",
$"{beatmap.Metadata.TitleUnicode ?? beatmap.Metadata.Title} "),
$"{beatmap.Metadata.TitleUnicode ?? beatmap.Metadata.Title} ",
$"{beatmap.Metadata.Title ?? beatmap.Metadata.TitleUnicode} "),
Font = OsuFont.GetFont(size: 14, weight: FontWeight.SemiBold, italics: true)
},
new OsuSpriteText
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Text = "by " + new RomanisableString(beatmap.Metadata.Artist, beatmap.Metadata.ArtistUnicode),
Text = "by " + new RomanisableString(beatmap.Metadata.ArtistUnicode, beatmap.Metadata.Artist),
Font = OsuFont.GetFont(size: 12, italics: true)
},
};