Use Current instead of Bindable

Bindable is going to be removed upstream
This commit is contained in:
Dean Herbert 2019-06-17 19:36:26 +09:00
parent b259710a62
commit acca2587ac
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ private void load()
editorInfo.Selected.ValueChanged += selection =>
{
groupingDropdown.Bindable = selection.NewValue?.Grouping;
losersCheckbox.Bindable = selection.NewValue?.Losers;
losersCheckbox.Current = selection.NewValue?.Losers;
dateTimeBox.Bindable = selection.NewValue?.Date;
team1Dropdown.Bindable = selection.NewValue?.Team1;