mirror of
https://github.com/osukey/osukey.git
synced 2025-05-21 21:47:31 +09:00
Prevent elements that are anchored in the center from blocking loading
This commit is contained in:
parent
20b2d0d4c7
commit
c1618a7a16
@ -69,6 +69,10 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
// note that this will not work well if touch handling elements are beneath this loading layer (something to consider for the future).
|
// note that this will not work well if touch handling elements are beneath this loading layer (something to consider for the future).
|
||||||
case TouchEvent:
|
case TouchEvent:
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// blocking drag events to prevent unintended ui pausing while loading a beat map (see https://github.com/ppy/osu/issues/22657)
|
||||||
|
case DragEvent:
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user