Allow horizontal scrolling on mod select overlay anywhere on the screen

Closes https://github.com/ppy/osu/issues/29248.
This commit is contained in:
Dean Herbert 2024-08-02 16:56:34 +09:00
parent 3c1907ced3
commit 76904272e6
No known key found for this signature in database

View File

@ -668,6 +668,8 @@ namespace osu.Game.Overlays.Mods
[Cached]
internal partial class ColumnScrollContainer : OsuScrollContainer<ColumnFlowContainer>
{
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
public ColumnScrollContainer()
: base(Direction.Horizontal)
{