mirror of
https://github.com/osukey/osukey.git
synced 2025-06-20 18:58:05 +09:00
Fix results' beatmap title and artist language setting being swapped
This commit is contained in:
parent
a40e3505f3
commit
3c07f73c7b
@ -87,14 +87,14 @@ namespace osu.Game.Screens.Ranking.Expanded
|
|||||||
{
|
{
|
||||||
Anchor = Anchor.TopCentre,
|
Anchor = Anchor.TopCentre,
|
||||||
Origin = Anchor.TopCentre,
|
Origin = Anchor.TopCentre,
|
||||||
Text = new LocalisedString((metadata.Title, metadata.TitleUnicode)),
|
Text = new LocalisedString((metadata.TitleUnicode, metadata.Title)),
|
||||||
Font = OsuFont.Torus.With(size: 20, weight: FontWeight.SemiBold),
|
Font = OsuFont.Torus.With(size: 20, weight: FontWeight.SemiBold),
|
||||||
},
|
},
|
||||||
new OsuSpriteText
|
new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.TopCentre,
|
Anchor = Anchor.TopCentre,
|
||||||
Origin = Anchor.TopCentre,
|
Origin = Anchor.TopCentre,
|
||||||
Text = new LocalisedString((metadata.Artist, metadata.ArtistUnicode)),
|
Text = new LocalisedString((metadata.ArtistUnicode, metadata.Artist)),
|
||||||
Font = OsuFont.Torus.With(size: 14, weight: FontWeight.SemiBold)
|
Font = OsuFont.Torus.With(size: 14, weight: FontWeight.SemiBold)
|
||||||
},
|
},
|
||||||
new Container
|
new Container
|
||||||
|
Loading…
x
Reference in New Issue
Block a user