Handle the numpad's Enter in cases where only the normal Enter was handled

This commit is contained in:
MrTheMake
2017-06-15 23:06:28 +02:00
parent 2124ffab5a
commit 06089a74e3
3 changed files with 3 additions and 1 deletions

View File

@ -371,6 +371,7 @@ namespace osu.Game.Screens.Select
switch (args.Key)
{
case Key.KeypadEnter:
case Key.Enter:
raiseSelect();
return true;