Merge pull request #3453 from XZzYassin/patch-1

fixes copying on macos
This commit is contained in:
Maximilian Hils 2019-01-23 13:07:40 +01:00 committed by GitHub
commit 5ad12e625b
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 () => {
}
}