Fix a few cases of missed instant invocation

This commit is contained in:
smoogipoo
2019-02-05 19:11:20 +09:00
parent aac371ba6e
commit 594dffba41
6 changed files with 9 additions and 12 deletions

View File

@ -260,8 +260,7 @@ namespace osu.Game.Screens.Multi.Match.Components
processingOverlay = new ProcessingOverlay { Alpha = 0 }
};
TypePicker.Current.ValueChanged += t => typeLabel.Text = t.Name;
TypePicker.Current.BindValueChanged(t => typeLabel.Text = t?.Name ?? string.Empty, true);
Name.BindValueChanged(n => NameField.Text = n, true);
Availability.BindValueChanged(a => AvailabilityPicker.Current.Value = a, true);
Type.BindValueChanged(t => TypePicker.Current.Value = t, true);