mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
SearchTextBox should not handle shift-delete.
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user