mirror of
https://github.com/ppy/osu.git
synced 2025-01-24 12:42:57 +08:00
Merge pull request #8415 from Joehuu/fix-keypad-autoplay-shortcut
Fix autoplay keyboard shortcut not working with keypad enter key
This commit is contained in:
commit
f676052528
@ -56,6 +56,7 @@ namespace osu.Game.Screens.Select
|
|||||||
switch (e.Key)
|
switch (e.Key)
|
||||||
{
|
{
|
||||||
case Key.Enter:
|
case Key.Enter:
|
||||||
|
case Key.KeypadEnter:
|
||||||
// this is a special hard-coded case; we can't rely on OnPressed (of SongSelect) as GlobalActionContainer is
|
// this is a special hard-coded case; we can't rely on OnPressed (of SongSelect) as GlobalActionContainer is
|
||||||
// matching with exact modifier consideration (so Ctrl+Enter would be ignored).
|
// matching with exact modifier consideration (so Ctrl+Enter would be ignored).
|
||||||
FinaliseSelection();
|
FinaliseSelection();
|
||||||
|
Loading…
Reference in New Issue
Block a user