aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/content/components/content-input.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/content/components/content-input.js b/src/content/components/content-input.js
index 9568caf..0ba4bcb 100644
--- a/src/content/components/content-input.js
+++ b/src/content/components/content-input.js
@@ -42,7 +42,8 @@ export default class ContentInputComponent {
}
return;
}
- if (e.key === 'OS') {
+ if (['Shift', 'Control', 'Alt', 'OS'].includes(e.key)) {
+ // pressing only meta key is ignored
return;
}