aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/InteractionUtils.tsx
diff options
context:
space:
mode:
authorvkalev <vjk1883@gmail.com>2021-08-12 13:02:26 -0400
committervkalev <vjk1883@gmail.com>2021-08-12 13:02:26 -0400
commit200585ebdc40b1c9710c8028e4e25965eaa73a9d (patch)
tree41684e0103a391787fe16aadd61479636ae080ed /src/client/util/InteractionUtils.tsx
parent8695343975decf566d8590d314a2f5c5cd89121b (diff)
increasing opacity (selected lines are no longer slightly transparent)
Diffstat (limited to 'src/client/util/InteractionUtils.tsx')
-rw-r--r--src/client/util/InteractionUtils.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx
index 32b70c4b4..e009fb3a9 100644
--- a/src/client/util/InteractionUtils.tsx
+++ b/src/client/util/InteractionUtils.tsx
@@ -210,8 +210,8 @@ export namespace InteractionUtils {
style={{
// filter: drawHalo ? "url(#inkSelectionHalo)" : undefined,
fill: fill ? fill : "none",
- // opacity: 1.0,
- opacity: strokeWidth !== width ? 0.5 : undefined,
+ opacity: 1.0,
+ // opacity: strokeWidth !== width ? 0.5 : undefined,
pointerEvents: pevents as any,
stroke: color ?? "rgb(0, 0, 0)",
strokeWidth: strokeWidth,