Ignore keyboard shortcuts when Ctrl is held down
This commit is contained in:
parent
3af6f9b65f
commit
1614baf210
|
@ -622,6 +622,10 @@ export default Vue.extend({
|
|||
}
|
||||
}
|
||||
|
||||
if (event.ctrlKey) {
|
||||
return
|
||||
}
|
||||
|
||||
if (this.player !== null) {
|
||||
switch (event.which) {
|
||||
case 32:
|
||||
|
|
Loading…
Reference in New Issue