diff options
author | eperelm2 <emily_perelman@brown.edu> | 2023-07-27 11:12:52 -0400 |
---|---|---|
committer | eperelm2 <emily_perelman@brown.edu> | 2023-07-27 11:12:52 -0400 |
commit | de1c1ac01ed51c07fbe55235f1c5ea9c8b9d5516 (patch) | |
tree | cbab54801fad40111b022c63e5c9a97df6c60e2b /src/client/util/InteractionUtils.tsx | |
parent | 43670f51a7dd627deeb3612f1066e51871235f2d (diff) | |
parent | 92cb8cd4fd46a4796cd585fd8fd9c9fc4d36811e (diff) |
Merge branch 'master' into secondpropertiesmenu-emily
Diffstat (limited to 'src/client/util/InteractionUtils.tsx')
-rw-r--r-- | src/client/util/InteractionUtils.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx index 043f0f1f3..d0f459291 100644 --- a/src/client/util/InteractionUtils.tsx +++ b/src/client/util/InteractionUtils.tsx @@ -178,7 +178,7 @@ export namespace InteractionUtils { filter: mask ? `url(#mask${defGuid})` : undefined, opacity: 1.0, // opacity: strokeWidth !== width ? 0.5 : undefined, - pointerEvents: pevents as any, + pointerEvents: (pevents as any) === 'all' ? 'visiblepainted' : (pevents as any), stroke: color ?? 'rgb(0, 0, 0)', strokeWidth: strokeWidth, strokeLinecap: lineCap as any, |