Skip to content

Commit e9cf61f

Browse files
committed
Update settings color to match game settings
1 parent 9ee374c commit e9cf61f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

osu.Game.Rulesets.Sandbox/UI/Settings/SandboxSettings.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using osu.Framework.Graphics.Shapes;
1111
using osu.Game.Graphics.Containers;
1212
using osuTK;
13+
using osu.Framework.Allocation;
1314

1415
namespace osu.Game.Rulesets.Sandbox.UI.Settings
1516
{
@@ -82,7 +83,8 @@ public SandboxSettingsSection[] Sections
8283
set => sectionsFlow.Children = value;
8384
}
8485

85-
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
86+
[Cached]
87+
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Purple);
8688
private readonly FillFlowContainer<SandboxSettingsSection> sectionsFlow;
8789

8890
public SettingsContent()

0 commit comments

Comments
 (0)