Rename method to be more in line with project naming

This commit is contained in:
Dean Herbert
2022-11-30 14:17:49 +09:00
parent 63ba40ff39
commit 0659c84341
3 changed files with 4 additions and 7 deletions

View File

@ -61,13 +61,10 @@ namespace osu.Game.Screens.Edit.Timing
{
base.LoadComplete();
selectedGroup.BindValueChanged(_ =>
{
updateSelectedGroup();
}, true);
selectedGroup.BindValueChanged(_ => updateSelectedGroup(), true);
}
private void updateSelectedGroup() => SetRowSelected(selectedGroup.Value);
private void updateSelectedGroup() => SetSelectedRow(selectedGroup.Value);
private TableColumn[] createHeaders()
{