Skip to content

Commit

Permalink
Merge pull request #15428 from RogueTea/numpad-enter-not-working-for-…
Browse files Browse the repository at this point in the history
…menu

Added missing case for numpadEnter on menu component
  • Loading branch information
cetincakiroglu authored May 2, 2024
2 parents ea047fc + 48f96f3 commit 383ce26
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/components/menu/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,10 @@ export class Menu implements OnDestroy {
this.onEnterKey(event);
break;

case 'NumpadEnter':
this.onEnterKey(event);
break;

case 'Space':
this.onSpaceKey(event);
break;
Expand Down

0 comments on commit 383ce26

Please sign in to comment.