diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/editor.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/editor.tsx b/pages/editor.tsx index ea6d664..5e0f2b0 100644 --- a/pages/editor.tsx +++ b/pages/editor.tsx @@ -369,7 +369,7 @@ function TimelineKeyframe(props: { return <animated.div className='frame posabs' style={{ - '--frame': spring.frame.get(), + '--frame': spring.frame, opacity: firstRender ? 0 : 1, } as CSSProperties} id={'slide-' + props.slide.id} @@ -787,7 +787,7 @@ function TimelineEditor() { } }); }, []); - // create new slide + // place new slide useDrag(({ xy: [rx, ry], initial: [ix, _iy], movement: [ox, _oy], last }) => { if (global.timeline.tool.value == 'cursor') return; |