auto-git:

[change] src/app/ProjectSequencesPanel.tsx
This commit is contained in:
2026-04-15 11:13:31 +02:00
parent d8d233b7fc
commit 1332b488cf

View File

@@ -600,6 +600,20 @@ export function ProjectSequencesPanel({
/>
<span className="label">Loop</span>
</label>
<label className="form-field form-field--inline">
<input
type="checkbox"
checked={effect.effect.smoothPath}
onChange={(event) =>
onSetControlStepPathSmooth(
selectedSequence.id,
effectIndex,
event.currentTarget.checked
)
}
/>
<span className="label">Smooth Path</span>
</label>
</>
) : null}
</>