Skip to content
Snippets Groups Projects
Commit 94fd8e4d authored by jojohoch's avatar jojohoch
Browse files

[player] Resets shift key of keyboard after pressing a key

Exceptions
- BACKSPACE, RETURN, SPACE (like iPad)
parent 679178b7
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,7 @@ export class KeyboardComponent {
}
default: {
this.keyClicked.emit(this.shift ? key[1] : key[0]);
this.shift = false;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment