Allow BlueprintContainer to specify toggles

This commit is contained in:
Dean Herbert
2020-09-25 14:09:31 +09:00
parent 3c191cfe25
commit bca774a0d4
2 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ namespace osu.Game.Rulesets.Osu.Edit
private readonly BindableBool distanceSnapToggle = new BindableBool(true) { Description = "Distance Snap" };
protected override IEnumerable<BindableBool> Toggles => new[]
protected override IEnumerable<Bindable<bool>> Toggles => base.Toggles.Concat(new[]
{
distanceSnapToggle
};
});
private BindableList<HitObject> selectedHitObjects;