diff --git a/osu.Game/Graphics/UserInterface/OsuTabControl.cs b/osu.Game/Graphics/UserInterface/OsuTabControl.cs index a6ee666e1d..ed8904db7e 100644 --- a/osu.Game/Graphics/UserInterface/OsuTabControl.cs +++ b/osu.Game/Graphics/UserInterface/OsuTabControl.cs @@ -30,8 +30,6 @@ public class OsuTabControl : TabControl protected virtual float StripWidth => TabContainer.Children.Sum(c => c.IsPresent ? c.DrawWidth + TabContainer.Spacing.X : 0) - TabContainer.Spacing.X; - protected virtual float StripHeight => 1; - /// /// Whether entries should be automatically populated if is an type. /// @@ -47,7 +45,7 @@ public OsuTabControl() { Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, - Height = StripHeight, + Height = 1, Colour = Color4.White.Opacity(0), });