Remove old header from PaginatedContainer

This commit is contained in:
Andrei Zavatski
2020-09-07 22:24:10 +03:00
parent 5a7e2e96e0
commit 1c55039994
11 changed files with 20 additions and 65 deletions

View File

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