padding -> PADDING

This commit is contained in:
DrabWeb 2017-05-26 16:36:00 -03:00
parent c9971bb490
commit 33d6b718be

View File

@ -9,14 +9,14 @@ namespace osu.Game.Graphics.UserInterface
{ {
public class BreadcrumbControl<T> : OsuTabControl<T> public class BreadcrumbControl<T> : OsuTabControl<T>
{ {
public const float padding = 10; public const float PADDING = 10;
protected override TabItem<T> CreateTabItem(T value) => new BreadcrumbTabItem(value); protected override TabItem<T> CreateTabItem(T value) => new BreadcrumbTabItem(value);
public BreadcrumbControl() public BreadcrumbControl()
{ {
Height = 26; Height = 26;
TabContainer.Spacing = new Vector2(padding, 0f); TabContainer.Spacing = new Vector2(PADDING, 0f);
Current.ValueChanged += tab => Current.ValueChanged += tab =>
{ {
foreach (TabItem<T> t in TabContainer.Children) foreach (TabItem<T> t in TabContainer.Children)
@ -42,14 +42,14 @@ namespace osu.Game.Graphics.UserInterface
public BreadcrumbTabItem(T value) : base(value) public BreadcrumbTabItem(T value) : base(value)
{ {
Text.TextSize = 16; Text.TextSize = 16;
Padding = new MarginPadding { Right = padding + 8 }; //padding + chevron width Padding = new MarginPadding { Right = PADDING + 8 }; //padding + chevron width
Add(Chevron = new TextAwesome Add(Chevron = new TextAwesome
{ {
Anchor = Anchor.CentreRight, Anchor = Anchor.CentreRight,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
TextSize = 12, TextSize = 12,
Icon = FontAwesome.fa_chevron_right, Icon = FontAwesome.fa_chevron_right,
Margin = new MarginPadding { Left = padding }, Margin = new MarginPadding { Left = PADDING },
Alpha = 0f, Alpha = 0f,
}); });
} }