Fix SearchTextBox's handling of keyboard input to allow for IME input.

This commit is contained in:
Dean Herbert
2017-02-09 12:33:24 +09:00
parent 4fc2cd227c
commit faa805e437
2 changed files with 3 additions and 1 deletions

View File

@ -74,6 +74,8 @@ namespace osu.Game.Screens.Select
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
if (HandlePendingText(state)) return true;
if (!state.Keyboard.ControlPressed && !state.Keyboard.ShiftPressed)
{
switch (args.Key)