aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorMumen Yassin <yassin.mumen@gmail.com>2019-01-23 14:34:55 +0300
committerGitHub <noreply@github.com>2019-01-23 14:34:55 +0300
commit995d9f0f4946aacba8ad4ff6b26a56cfe705af66 (patch)
tree793e364d30bf56c6c32aef76082e56168ef2aa60 /web
parent8b9583f19d6d20a06996a897c2df95c3a3b12733 (diff)
downloadmitmproxy-995d9f0f4946aacba8ad4ff6b26a56cfe705af66.tar.gz
mitmproxy-995d9f0f4946aacba8ad4ff6b26a56cfe705af66.tar.bz2
mitmproxy-995d9f0f4946aacba8ad4ff6b26a56cfe705af66.zip
fixes copying on macos
Diffstat (limited to 'web')
-rw-r--r--web/src/js/ducks/ui/keyboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/ducks/ui/keyboard.js b/web/src/js/ducks/ui/keyboard.js
index ed4dbba5..007d24db 100644
--- a/web/src/js/ducks/ui/keyboard.js
+++ b/web/src/js/ducks/ui/keyboard.js
@@ -6,7 +6,7 @@ import * as modalActions from "./modal"
export function onKeyDown(e) {
//console.debug("onKeyDown", e)
- if (e.ctrlKey) {
+ if (e.ctrlKey || e.metaKey) {
return () => {
}
}