Skip to content

Commit ce0f1f9

Browse files
committed
fix: increase collaborator indicator opacity to 0.7
Improves visibility of collaborator shape indicators while still maintaining visual distinction from local selection indicators.
1 parent 22efe17 commit ce0f1f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/editor/src/lib/components/default-components/CanvasShapeIndicators.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export const CanvasShapeIndicators = memo(function CanvasShapeIndicators() {
207207
ctx.lineWidth = 1.5 / zoom
208208
for (const collaborator of collaboratorIndicators) {
209209
ctx.strokeStyle = collaborator.color
210-
ctx.globalAlpha = 0.5
210+
ctx.globalAlpha = 0.7
211211
for (const shapeId of collaborator.shapeIds) {
212212
renderShapeIndicator(ctx, editor, shapeId, renderingShapeIds)
213213
}

0 commit comments

Comments
 (0)