mirror of
https://github.com/ppy/osu
synced 2024-12-16 03:45:46 +00:00
Only call Reset()
if lastCategory
and lastHasQuery
is null
This commit is contained in:
parent
610d2f9dc7
commit
0366a8e348
@ -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,9 +20,11 @@ namespace osu.Game.Overlays.BeatmapListing
|
||||
private SearchCategory? lastCategory;
|
||||
private bool? lastHasQuery;
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load()
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
if (lastCategory == null && lastHasQuery == null)
|
||||
Reset(SearchCategory.Leaderboard, false);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user