Allow ten timeline sections

This commit is contained in:
OpenClaw Agent
2026-07-20 14:30:32 +00:00
parent a1a1184155
commit 575838aeb0
2 changed files with 24 additions and 3 deletions

View File

@@ -11592,7 +11592,7 @@ app.registerExtension({
const sections = [];
let duration = 0;
if (sectionSetNode && setClass === "TimelineSectionSetCS") {
for (let i = 1; i <= 5; i++) {
for (let i = 1; i <= 10; i++) {
const sectionNode = self._findLinkedOriginNode(sectionSetNode, `section_${i}`);
const sectionClass = sectionNode?.comfyClass || sectionNode?.type || "";
if (!sectionNode || sectionClass !== "TimelineSectionCS") continue;