mirror of
https://github.com/ppy/osu.git
synced 2025-02-20 04:23:14 +08:00
Use Current instead of Bindable
Bindable is going to be removed upstream
This commit is contained in:
parent
b259710a62
commit
acca2587ac
@ -47,7 +47,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user