From 376b4e89299f61b05f441ebdee1923a245f4aa66 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 16 Apr 2025 18:45:48 +0900 Subject: [PATCH] Disable masking of `Carousel` The default for carousels should be unmasked as their usage generally sees them overflowing outside their main usage area (see `bleed` variables). --- osu.Game/Graphics/Carousel/Carousel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Graphics/Carousel/Carousel.cs b/osu.Game/Graphics/Carousel/Carousel.cs index a9c8aecd6c..3a02eb7119 100644 --- a/osu.Game/Graphics/Carousel/Carousel.cs +++ b/osu.Game/Graphics/Carousel/Carousel.cs @@ -228,6 +228,7 @@ namespace osu.Game.Graphics.Carousel { InternalChild = Scroll = new CarouselScrollContainer { + Masking = false, RelativeSizeAxes = Axes.Both, };