Only expose bindable string rather than full textbox

This commit is contained in:
Dean Herbert
2022-07-15 18:01:35 +09:00
parent 86d019c2b2
commit e12e480393
2 changed files with 13 additions and 11 deletions

View File

@ -180,7 +180,7 @@ namespace osu.Game.Screens.Select
void searchOnSongSelect(string text)
{
if (songSelect != null)
songSelect.FilterControl.SearchTextBox.Text = text;
songSelect.FilterControl.CurrentTextSearch.Value = text;
}
}