mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 22:42:57 +08:00
SearchTextBox should not handle shift-delete.
This commit is contained in:
parent
60d9e9f02e
commit
355bbb6324
@ -49,6 +49,15 @@ namespace osu.Game.Screens.Select
|
||||
}
|
||||
}
|
||||
|
||||
if (state.Keyboard.ShiftPressed)
|
||||
{
|
||||
switch (args.Key)
|
||||
{
|
||||
case Key.Delete:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return base.OnKeyDown(state, args);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user