1
0
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:
Dean Herbert 2017-02-23 20:01:44 +09:00
parent 60d9e9f02e
commit 355bbb6324
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -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);
}
}