1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 16:12:57 +08:00

Merge pull request #17188 from peppy/fix-carousel-item-interaction-when-not-visible

Fix beatmap carousel panels accepting input while marked as not-visible
This commit is contained in:
Dan Balasescu 2022-03-09 17:43:30 +09:00 committed by GitHub
commit d847f5874c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,9 @@ namespace osu.Game.Screens.Select.Carousel
public override bool IsPresent => base.IsPresent || Item?.Visible == true;
public override bool HandlePositionalInput => Item?.Visible == true;
public override bool PropagatePositionalInputSubTree => Item?.Visible == true;
public readonly CarouselHeader Header;
/// <summary>