Skip to content

Commit

Permalink
fixes copying on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
XZzYassin committed Jan 23, 2019
1 parent 8b9583f commit 995d9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/js/ducks/ui/keyboard.js
Expand Up @@ -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 () => {
}
}
Expand Down

0 comments on commit 995d9f0

Please sign in to comment.