Fix a couple of merge oversights

This commit is contained in:
Dean Herbert 2021-07-01 19:45:17 +09:00
parent 31dbc7798b
commit 0522500a57
2 changed files with 5 additions and 4 deletions

View File

@ -89,7 +89,11 @@ private void load()
};
}
public void ShowWithSearch(string query) => filterControl.Search(query);
public void ShowWithSearch(string query)
{
filterControl.Search(query);
Show();
}
protected override BeatmapListingHeader CreateHeader() => new BeatmapListingHeader();

View File

@ -149,9 +149,6 @@ public BeatmapDetails()
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
description = new MetadataSection(MetadataType.Description),
source = new MetadataSection(MetadataType.Source),
tags = new MetadataSection(MetadataType.Tags),
new OsuSpriteText
{
Text = "Points of Failure",