diff options
author | Maximilian Hils <git@maximilianhils.com> | 2019-01-23 13:07:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 13:07:40 +0100 |
commit | 5ad12e625b5357d19e1405ae3c0e5b9edd76651a (patch) | |
tree | 793e364d30bf56c6c32aef76082e56168ef2aa60 | |
parent | 8b9583f19d6d20a06996a897c2df95c3a3b12733 (diff) | |
parent | 995d9f0f4946aacba8ad4ff6b26a56cfe705af66 (diff) | |
download | mitmproxy-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.js | 2 |
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 () => { } } |