From 796858f86f2b5a3ac5eeb504dfa3e1a5183fb8a8 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 16 Dec 2016 00:37:37 -0500 Subject: [PATCH] Fix transparency issues --- osu.Game/Overlays/Options/SliderOption.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Options/SliderOption.cs b/osu.Game/Overlays/Options/SliderOption.cs index bdca93b341..179b3ed440 100644 --- a/osu.Game/Overlays/Options/SliderOption.cs +++ b/osu.Game/Overlays/Options/SliderOption.cs @@ -98,7 +98,11 @@ namespace osu.Game.Overlays.Options BorderThickness = 3, Children = new[] { - new Box { Colour = Color4.Transparent, RelativeSizeAxes = Axes.Both } + new Box + { + Colour = new Color4(255, 102, 170, 0), + RelativeSizeAxes = Axes.Both + } } }, };