From 132241424db9f438c102f2a7aeae41675c3754ed Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 31 Jul 2018 15:59:06 +0900 Subject: [PATCH] Apply FollowPoint alpha to inner container (should not affect legacy skins) --- .../Objects/Drawables/Connections/FollowPoint.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs b/osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs index 1c486d5d1e..908b9cb3c6 100644 --- a/osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs +++ b/osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs @@ -38,11 +38,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections Blending = BlendingMode.Additive, Origin = Anchor.Centre, Anchor = Anchor.Centre, + Alpha = 0.5f, } - }, restrictSize: false) - { - Alpha = 0.5f, - }; + }, restrictSize: false); } } }