aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-07-01 11:15:09 +0200
committerlonkaars <loek@pipeframe.xyz>2021-07-01 11:15:09 +0200
commit48e6be19588b7145fb5472c8b7b468e9dbfd7c77 (patch)
tree85fc35d8b86d9f2bdccaf0efac9dacba6b0276db /pages
parent42501f3d4bcf4586a7d75f886e3839efc7a28ced (diff)
fix #2
Diffstat (limited to 'pages')
-rw-r--r--pages/editor.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/editor.tsx b/pages/editor.tsx
index 3dbf107..6a283d5 100644
--- a/pages/editor.tsx
+++ b/pages/editor.tsx
@@ -911,7 +911,8 @@ function TimelineEditor() {
<TimelineSelection selectionDragArea={selectionDragArea} />
<animated.div
id='ghost'
- className={'posabs dispinbl ' + (ghostPlaced ? 'placed' : '')}
+ className={'posabs dispinbl ' + (ghostPlaced ? 'placed ' : '')
+ + (global.timeline.tool.value == 'loop' ? 'loop ' : '')}
style={{
'--y': ghost.y,
'--x': ghost.x,