1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +08:00

Fix transparency issues

This commit is contained in:
Drew DeVault 2016-12-16 00:37:37 -05:00
parent 6143a9f318
commit 796858f86f

View File

@ -98,7 +98,11 @@ namespace osu.Game.Overlays.Options
BorderThickness = 3, BorderThickness = 3,
Children = new[] Children = new[]
{ {
new Box { Colour = Color4.Transparent, RelativeSizeAxes = Axes.Both } new Box
{
Colour = new Color4(255, 102, 170, 0),
RelativeSizeAxes = Axes.Both
}
} }
}, },
}; };