From c3b9644d777961b47f1dbefbb239b4a32d3f2c23 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Sat, 14 Oct 2017 11:59:18 +0900 Subject: [PATCH] Move infoFlow to local variable --- osu.Game/Overlays/MedalSplash/DrawableMedal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/MedalSplash/DrawableMedal.cs b/osu.Game/Overlays/MedalSplash/DrawableMedal.cs index 419c8c2444..53d77dab6c 100644 --- a/osu.Game/Overlays/MedalSplash/DrawableMedal.cs +++ b/osu.Game/Overlays/MedalSplash/DrawableMedal.cs @@ -27,13 +27,13 @@ namespace osu.Game.Overlays.MedalSplash private readonly Sprite medalSprite, medalGlow; private readonly OsuSpriteText unlocked, name; private readonly TextFlowContainer description; - private readonly FillFlowContainer infoFlow; private DisplayState state; public DrawableMedal(Medal medal) { this.medal = medal; Position = new Vector2(0f, MedalOverlay.DISC_SIZE / 2); + FillFlowContainer infoFlow; Children = new Drawable[] { medalContainer = new Container