Fix slider bar regression when using arrows

This commit is contained in:
Joehu
2019-10-17 13:54:36 -07:00
parent 649951198e
commit e5b50b5e1f
3 changed files with 14 additions and 9 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 FixedSearchTextBox : SearchTextBox
{
public override bool HandleLeftRightArrows => false;
}
}