Skip to content

Commit

Permalink
πŸ› Fix + key for shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
NovusTheory committed Oct 5, 2023
1 parent 93615a7 commit 5276d25
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/shared/components/KeybindInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ function validateKey(event: KeyboardEvent) {
if (event.code === "ArrowDown") return "Down";
if (event.code === "ArrowLeft") return "Left";
if (event.code === "ArrowRight") return "Right";
if (event.shiftKey && event.code === "Equal") return "Plus";
if (event.keyCode >= 65 && event.keyCode <= 90) return event.key.toUpperCase();
return event.key;
Expand Down

0 comments on commit 5276d25

Please sign in to comment.