From 556f770a4c7e9c9f9df7d8857dd496ff1dedc6e7 Mon Sep 17 00:00:00 2001 From: bobzel Date: Wed, 13 Sep 2023 13:54:53 -0400 Subject: fixed ink lines to highlight with a dropshadow. added a stroke_borderWidth, but no UI for it. --- src/client/util/InteractionUtils.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/client/util/InteractionUtils.tsx') diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx index d0f459291..464643b09 100644 --- a/src/client/util/InteractionUtils.tsx +++ b/src/client/util/InteractionUtils.tsx @@ -108,7 +108,8 @@ export namespace InteractionUtils { opacity: number, nodefs: boolean, downHdlr?: (e: React.PointerEvent) => void, - mask?: boolean + mask?: boolean, + dropshadow?: string ) { const pts = shape ? makePolygon(shape, points) : points; @@ -172,6 +173,7 @@ export namespace InteractionUtils {