diff --git a/osu.Game/Rulesets/UI/RulesetContainer.cs b/osu.Game/Rulesets/UI/RulesetContainer.cs
index 8f91c3fcf2..f4e700a8eb 100644
--- a/osu.Game/Rulesets/UI/RulesetContainer.cs
+++ b/osu.Game/Rulesets/UI/RulesetContainer.cs
@@ -33,11 +33,6 @@ namespace osu.Game.Rulesets.UI
///
public abstract class RulesetContainer : Container
{
- ///
- /// Whether to apply adjustments to the child based on our own size.
- ///
- public bool AspectAdjust = true;
-
///
/// The selected variant.
///
@@ -324,7 +319,7 @@ namespace osu.Game.Rulesets.UI
{
base.Update();
- Playfield.Size = AspectAdjust ? GetAspectAdjustedSize() : Vector2.One;
+ Playfield.Size = GetAspectAdjustedSize();
}
///