Reorder params

This commit is contained in:
smoogipoo
2020-09-11 12:17:12 +09:00
parent cfc6e2175d
commit be5d143b5a
6 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
public class PaginatedMostPlayedBeatmapContainer : PaginatedContainer<APIUserMostPlayedBeatmap>
{
public PaginatedMostPlayedBeatmapContainer(Bindable<User> user)
: base(user, "No records. :(", "Most Played Beatmaps")
: base(user, "Most Played Beatmaps", "No records. :(")
{
ItemsPerPage = 5;
}