Rename panels

This commit is contained in:
Dean Herbert
2020-04-21 20:55:33 +09:00
parent 9b9b710ded
commit ed9663985b
7 changed files with 16 additions and 16 deletions

View File

@ -20,8 +20,8 @@ namespace osu.Game.Tests.Visual.Online
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(BeatmapPanelGrid),
typeof(BeatmapPanelList),
typeof(GridBeatmapPanel),
typeof(ListBeatmapPanel),
typeof(IconPill)
};
@ -126,12 +126,12 @@ namespace osu.Game.Tests.Visual.Online
Spacing = new Vector2(5, 20),
Children = new Drawable[]
{
new BeatmapPanelGrid(normal),
new BeatmapPanelGrid(undownloadable),
new BeatmapPanelGrid(manyDifficulties),
new BeatmapPanelList(normal),
new BeatmapPanelList(undownloadable),
new BeatmapPanelList(manyDifficulties),
new GridBeatmapPanel(normal),
new GridBeatmapPanel(undownloadable),
new GridBeatmapPanel(manyDifficulties),
new ListBeatmapPanel(normal),
new ListBeatmapPanel(undownloadable),
new ListBeatmapPanel(manyDifficulties),
},
},
};