We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d60b12 commit 1c8f53cCopy full SHA for 1c8f53c
src/routes/(app)/config/chords/ChordPhraseEdit.svelte
@@ -18,11 +18,11 @@
18
});
19
20
function keypress(event: KeyboardEvent) {
21
- if (event.key === "ArrowUp") {
+ if (!event.shiftKey && event.key === "ArrowUp") {
22
addSpecial(event);
23
- } else if (event.key === "ArrowLeft") {
+ } else if (!event.shiftKey && event.key === "ArrowLeft") {
24
moveCursor(cursorPosition - 1);
25
- } else if (event.key === "ArrowRight") {
+ } else if (!event.shiftKey && event.key === "ArrowRight") {
26
moveCursor(cursorPosition + 1);
27
} else if (event.key === "Backspace") {
28
deleteAction(cursorPosition - 1);
0 commit comments