aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2019-01-23 13:07:40 +0100
committerGitHub <noreply@github.com>2019-01-23 13:07:40 +0100
commit5ad12e625b5357d19e1405ae3c0e5b9edd76651a (patch)
tree793e364d30bf56c6c32aef76082e56168ef2aa60
parent8b9583f19d6d20a06996a897c2df95c3a3b12733 (diff)
parent995d9f0f4946aacba8ad4ff6b26a56cfe705af66 (diff)
downloadmitmproxy-5ad12e625b5357d19e1405ae3c0e5b9edd76651a.tar.gz
mitmproxy-5ad12e625b5357d19e1405ae3c0e5b9edd76651a.tar.bz2
mitmproxy-5ad12e625b5357d19e1405ae3c0e5b9edd76651a.zip
Merge pull request #3453 from XZzYassin/patch-1
fixes copying on macos
-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 () => {
}
}