From 15be762f71664e97fa5dca206e739366d4a7f628 Mon Sep 17 00:00:00 2001 From: Joseph Madamba Date: Fri, 6 Jun 2025 08:47:32 -0700 Subject: [PATCH] Fix loading spinner without a box clipping --- osu.Game/Graphics/UserInterface/LoadingSpinner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Graphics/UserInterface/LoadingSpinner.cs b/osu.Game/Graphics/UserInterface/LoadingSpinner.cs index df921c5c81..5aa339c7c5 100644 --- a/osu.Game/Graphics/UserInterface/LoadingSpinner.cs +++ b/osu.Game/Graphics/UserInterface/LoadingSpinner.cs @@ -40,7 +40,7 @@ namespace osu.Game.Graphics.UserInterface Child = MainContents = new Container { RelativeSizeAxes = Axes.Both, - Masking = true, + Masking = withBox, CornerRadius = 20, Anchor = Anchor.Centre, Origin = Anchor.Centre,