From 6b3c7e420943e1f35d3cae3e01a83d0ad284fddf Mon Sep 17 00:00:00 2001 From: wizardAEI Date: Sun, 3 May 2026 18:18:53 +0800 Subject: [PATCH] Fix webcam squircle clipping --- src/components/video-editor/VideoPlayback.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/video-editor/VideoPlayback.tsx b/src/components/video-editor/VideoPlayback.tsx index 2d865fbb..e51ea205 100644 --- a/src/components/video-editor/VideoPlayback.tsx +++ b/src/components/video-editor/VideoPlayback.tsx @@ -606,7 +606,7 @@ const VideoPlayback = forwardRef( bubble.style.borderRadius = "0px"; bubble.style.boxShadow = "none"; - bubbleInner.style.borderRadius = `${webcamCornerRadius}px`; + bubbleInner.style.borderRadius = "0px"; bubbleInner.style.overflow = "hidden"; bubbleInner.style.contain = "paint"; bubbleInner.style.clipPath = `path('${squirclePath}')`;