Update search textbox implementation to use BasicSearchTextBox instead

This commit is contained in:
Ganendra Afrasya
2022-05-03 06:18:42 +07:00
parent d7919f462c
commit 81be69e72e
5 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ namespace osu.Game.Graphics.UserInterface
/// <summary>
/// A <see cref="SearchTextBox"/> which does not handle left/right arrow keys for seeking.
/// </summary>
public class SeekLimitedSearchTextBox : SearchTextBox
public class SeekLimitedSearchTextBox : BasicSearchTextBox
{
public override bool HandleLeftRightArrows => false;
}