mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Use Current instead of Bindable
Bindable is going to be removed upstream
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user