Reorder enum cases to match web order

This commit is contained in:
Bartłomiej Dach 2022-08-06 18:34:30 +02:00
parent 6a9c30c47a
commit ab1b38242f
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -75,11 +75,6 @@ namespace osu.Game.Overlays.Profile.Sections.Recent
icon.Colour = Color4.White;
break;
case RecentActivityType.UsernameChange:
icon.Icon = FontAwesome.Solid.Tag;
icon.Colour = Color4.White;
break;
case RecentActivityType.UserSupportAgain:
icon.Icon = FontAwesome.Solid.Heart;
icon.Colour = colours.Pink;
@ -94,6 +89,11 @@ namespace osu.Game.Overlays.Profile.Sections.Recent
icon.Icon = FontAwesome.Solid.Gift;
icon.Colour = colours.Pink;
break;
case RecentActivityType.UsernameChange:
icon.Icon = FontAwesome.Solid.Tag;
icon.Colour = Color4.White;
break;
}
}