mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 07:42:57 +08:00
don't check for shift
This commit is contained in:
parent
e789bb37c8
commit
b95a598338
@ -16,8 +16,6 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public override bool HandleLeftRightArrows => false;
|
||||
|
||||
private InputManager inputManager;
|
||||
|
||||
public SearchTextBox()
|
||||
{
|
||||
Height = 35;
|
||||
@ -36,16 +34,10 @@ namespace osu.Game.Graphics.UserInterface
|
||||
PlaceholderText = "type to search";
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
inputManager = GetContainingInputManager();
|
||||
base.LoadComplete();
|
||||
}
|
||||
|
||||
protected override bool HandleAction(PlatformAction action)
|
||||
{
|
||||
// Allow shift-delete to be handled locally
|
||||
if (inputManager.CurrentState.Keyboard.ShiftPressed && action.ActionType == PlatformActionType.CharNext && action.ActionMethod == PlatformActionMethod.Delete)
|
||||
// Allow delete to be handled locally
|
||||
if (action.ActionType == PlatformActionType.CharNext && action.ActionMethod == PlatformActionMethod.Delete)
|
||||
return false;
|
||||
|
||||
return base.HandleAction(action);
|
||||
|
Loading…
Reference in New Issue
Block a user