ModeToggleButton -> RulesetToggleButton

This commit is contained in:
DrabWeb 2017-05-18 16:17:16 -03:00
parent c2880676db
commit 0b480fe327
1 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ public class FilterControl : Container
public static readonly float LOWER_HEIGHT = 21;
private readonly Box tabStrip;
private readonly FillFlowContainer<ModeToggleButton> modeButtons;
private readonly FillFlowContainer<RulesetToggleButton> modeButtons;
private FillFlowContainer resultCounts;
public readonly SearchTextBox Search;
@ -68,7 +68,7 @@ public FilterControl()
{
RelativeSizeAxes = Axes.X,
},
modeButtons = new FillFlowContainer<ModeToggleButton>
modeButtons = new FillFlowContainer<RulesetToggleButton>
{
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(10f, 0f),
@ -126,7 +126,7 @@ private void load(OsuGame game, RulesetDatabase rulesets, OsuColour colours)
foreach (var r in rulesets.AllRulesets)
{
modeButtons.Add(new ModeToggleButton(game?.Ruleset ?? new Bindable<RulesetInfo>(), r));
modeButtons.Add(new RulesetToggleButton(game?.Ruleset ?? new Bindable<RulesetInfo>(), r));
}
}
@ -144,7 +144,7 @@ private void load(OsuColour colours)
}
}
private class ModeToggleButton : ClickableContainer
private class RulesetToggleButton : ClickableContainer
{
private TextAwesome icon;
@ -166,7 +166,7 @@ void Bindable_ValueChanged(RulesetInfo obj)
icon.FadeTo((Ruleset == obj) ? 1f : 0.5f, 100);
}
public ModeToggleButton(Bindable<RulesetInfo> bindable, RulesetInfo ruleset)
public RulesetToggleButton(Bindable<RulesetInfo> bindable, RulesetInfo ruleset)
{
this.bindable = bindable;
AutoSizeAxes = Axes.Both;