Remove unnecessarily exposed value

This commit is contained in:
Dean Herbert 2020-01-03 15:35:18 +09:00
parent e8567414c6
commit fe581bf27e
1 changed files with 1 additions and 3 deletions

View File

@ -30,8 +30,6 @@ public class OsuTabControl<T> : TabControl<T>
protected virtual float StripWidth => TabContainer.Children.Sum(c => c.IsPresent ? c.DrawWidth + TabContainer.Spacing.X : 0) - TabContainer.Spacing.X;
protected virtual float StripHeight => 1;
/// <summary>
/// Whether entries should be automatically populated if <typeparamref name="T"/> is an <see cref="Enum"/> type.
/// </summary>
@ -47,7 +45,7 @@ public OsuTabControl()
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Height = StripHeight,
Height = 1,
Colour = Color4.White.Opacity(0),
});