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 #30716.
This commit is contained in:
parent
945139635f
commit
ae98f63b51
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user