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> /// <summary>
/// A <see cref="SearchTextBox"/> which does not handle left/right arrow keys for seeking. /// A <see cref="SearchTextBox"/> which does not handle left/right arrow keys for seeking.
/// </summary> /// </summary>
public class SeekLimitedSearchTextBox : SearchTextBox public class SeekLimitedSearchTextBox : BasicSearchTextBox
{ {
public override bool HandleLeftRightArrows => false; public override bool HandleLeftRightArrows => false;
} }

View File

@ -163,7 +163,7 @@ namespace osu.Game.Overlays.BeatmapListing
public void TakeFocus() => textBox.TakeFocus(); public void TakeFocus() => textBox.TakeFocus();
private class BeatmapSearchTextBox : SearchTextBox private class BeatmapSearchTextBox : BasicSearchTextBox
{ {
/// <summary> /// <summary>
/// Any time the text box receives key events (even while masked). /// Any time the text box receives key events (even while masked).

View File

@ -181,7 +181,7 @@ namespace osu.Game.Overlays.Chat.Selection
base.PopOut(); base.PopOut();
} }
private class HeaderSearchTextBox : SearchTextBox private class HeaderSearchTextBox : BasicSearchTextBox
{ {
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load() private void load()

View File

@ -56,7 +56,7 @@ namespace osu.Game.Overlays.Music
Collection = collectionDropdown.Current.Value?.Collection Collection = collectionDropdown.Current.Value?.Collection
}; };
public class FilterTextBox : SearchTextBox public class FilterTextBox : BasicSearchTextBox
{ {
protected override bool AllowCommit => true; protected override bool AllowCommit => true;

View File

@ -129,7 +129,7 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Height = Header.HEIGHT, Height = Header.HEIGHT,
Child = searchTextBox = new SearchTextBox Child = searchTextBox = new BasicSearchTextBox
{ {
Anchor = Anchor.CentreRight, Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight, Origin = Anchor.CentreRight,