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

Fix beatmap listing not entering correct search mode when arriving before LoadComplete

This commit is contained in:
Dean Herbert 2022-07-15 17:53:44 +09:00
parent ba0a158740
commit 437e01427c

View File

@ -143,7 +143,7 @@ namespace osu.Game.Overlays.BeatmapListing
}
public void Search(string query)
=> searchControl.Query.Value = query;
=> Schedule(() => searchControl.Query.Value = query);
protected override void LoadComplete()
{