Add OnRowSelected event to EditorTable

This commit is contained in:
Jai Sharma
2022-11-27 02:47:54 +00:00
parent 792334a190
commit 3c56b9c93a
4 changed files with 18 additions and 9 deletions

View File

@ -77,7 +77,7 @@ namespace osu.Game.Screens.Edit.Verify
selectedIssue = verify.SelectedIssue.GetBoundCopy();
selectedIssue.BindValueChanged(issue =>
{
foreach (var b in BackgroundFlow) b.Selected = b.Item == issue.NewValue;
SetRowSelected(issue);
}, true);
}