1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

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 @@ namespace osu.Game.Overlays
}; };
} }
public void ShowWithSearch(string query) => filterControl.Search(query); public void ShowWithSearch(string query)
{
filterControl.Search(query);
Show();
}
protected override BeatmapListingHeader CreateHeader() => new BeatmapListingHeader(); protected override BeatmapListingHeader CreateHeader() => new BeatmapListingHeader();

View File

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