From b83a3dc1050e91bcb1a108fa54da688a883ae318 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 4 Aug 2025 13:32:56 +0900 Subject: [PATCH] Fix clicks propagating through personal best score area Closes https://github.com/ppy/osu/issues/34483. --- osu.Game/Screens/SelectV2/WedgeBackground.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/SelectV2/WedgeBackground.cs b/osu.Game/Screens/SelectV2/WedgeBackground.cs index ecfbd51260..3fa21beee2 100644 --- a/osu.Game/Screens/SelectV2/WedgeBackground.cs +++ b/osu.Game/Screens/SelectV2/WedgeBackground.cs @@ -5,13 +5,13 @@ using osu.Framework.Allocation; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Colour; -using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; +using osu.Game.Graphics; using osu.Game.Overlays; namespace osu.Game.Screens.SelectV2 { - internal partial class WedgeBackground : CompositeDrawable + internal sealed partial class WedgeBackground : InputBlockingContainer { public float StartAlpha { get; init; } = 0.9f;