Rename "FixedSearchTextBox" to "SeekLimitedSearchTextBox"

This commit is contained in:
Joehu
2019-10-21 16:00:09 -07:00
parent e5b50b5e1f
commit f7924d3bad
3 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,10 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Graphics.UserInterface
{
public class SeekLimitedSearchTextBox : SearchTextBox
{
public override bool HandleLeftRightArrows => false;
}
}