mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Prevent elements that are anchored in the center from blocking loading
This commit is contained in:
@ -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).
|
||||
case TouchEvent:
|
||||
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;
|
||||
|
Reference in New Issue
Block a user