1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 13:37:25 +08:00

Only call Reset() if lastCategory and lastHasQuery is null

This commit is contained in:
Joseph Madamba 2023-01-31 12:44:44 -08:00
parent 610d2f9dc7
commit 0366a8e348

View File

@ -3,7 +3,6 @@
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
@ -21,10 +20,12 @@ namespace osu.Game.Overlays.BeatmapListing
private SearchCategory? lastCategory;
private bool? lastHasQuery;
[BackgroundDependencyLoader]
private void load()
protected override void LoadComplete()
{
Reset(SearchCategory.Leaderboard, false);
base.LoadComplete();
if (lastCategory == null && lastHasQuery == null)
Reset(SearchCategory.Leaderboard, false);
}
public void Reset(SearchCategory category, bool hasQuery)