From d57d5daac98cac724d59c4a4178402e2a122f80d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 7 Nov 2016 21:17:29 +0900 Subject: [PATCH] Support generic FlowContainer. --- osu.Game/Overlays/Options/OptionsSubsection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Options/OptionsSubsection.cs b/osu.Game/Overlays/Options/OptionsSubsection.cs index 5d388bd003..c867b8b7cf 100644 --- a/osu.Game/Overlays/Options/OptionsSubsection.cs +++ b/osu.Game/Overlays/Options/OptionsSubsection.cs @@ -8,7 +8,7 @@ namespace osu.Game.Overlays.Options { public abstract class OptionsSubsection : Container { - private Container content; + private Container content; protected override Container Content => content; protected abstract string Header { get; }