1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

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

@ -46,7 +46,7 @@ namespace osu.Game.Screens.Edit
});
}
protected void SetRowSelected(object? item)
protected void SetSelectedRow(object? item)
{
foreach (var b in BackgroundFlow)
{

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()
{

View File

@ -77,7 +77,7 @@ namespace osu.Game.Screens.Edit.Verify
selectedIssue = verify.SelectedIssue.GetBoundCopy();
selectedIssue.BindValueChanged(issue =>
{
SetRowSelected(issue.NewValue);
SetSelectedRow(issue.NewValue);
}, true);
}