2019-10-17 20:54:36 +00:00
|
|
|
|
// 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
|
|
|
|
|
{
|
2019-10-22 06:04:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A <see cref="SearchTextBox"/> which does not handle left/right arrow keys for seeking.
|
|
|
|
|
/// </summary>
|
2019-10-21 23:00:09 +00:00
|
|
|
|
public class SeekLimitedSearchTextBox : SearchTextBox
|
2019-10-17 20:54:36 +00:00
|
|
|
|
{
|
|
|
|
|
public override bool HandleLeftRightArrows => false;
|
|
|
|
|
}
|
|
|
|
|
}
|