We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee374c commit e9cf61fCopy full SHA for e9cf61f
osu.Game.Rulesets.Sandbox/UI/Settings/SandboxSettings.cs
@@ -10,6 +10,7 @@
10
using osu.Framework.Graphics.Shapes;
11
using osu.Game.Graphics.Containers;
12
using osuTK;
13
+using osu.Framework.Allocation;
14
15
namespace osu.Game.Rulesets.Sandbox.UI.Settings
16
{
@@ -82,7 +83,8 @@ public SandboxSettingsSection[] Sections
82
83
set => sectionsFlow.Children = value;
84
}
85
- private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
86
+ [Cached]
87
+ private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
88
private readonly FillFlowContainer<SandboxSettingsSection> sectionsFlow;
89
90
public SettingsContent()
0 commit comments