1
0
mirror of https://github.com/ppy/osu synced 2025-04-01 22:48:33 +00:00

Fix beatmap load not continuing when when settings slider is focused

Regressed with recent sliderbar focus changes.

Closes .
This commit is contained in:
Dean Herbert 2024-11-21 02:23:56 +09:00
parent 945139635f
commit ae98f63b51
No known key found for this signature in database

View File

@ -122,7 +122,9 @@ namespace osu.Game.Screens.Play
// not ready if the user is dragging a slider or otherwise.
&& (inputManager.DraggedDrawable == null || inputManager.DraggedDrawable is OsuLogo)
// not ready if a focused overlay is visible, like settings.
&& inputManager.FocusedDrawable == null;
&& inputManager.FocusedDrawable is not OsuFocusedOverlayContainer
// or if a child of a focused overlay is focused, like settings' search textbox.
&& inputManager.FocusedDrawable?.FindClosestParent<OsuFocusedOverlayContainer>() == null;
private readonly Func<Player> createPlayer;