fixes copying on macos

This commit is contained in:
Mumen Yassin 2019-01-23 14:34:55 +03:00 committed by GitHub
parent 8b9583f19d
commit 995d9f0f49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 () => {
}
}