fixed group sizing with syncs

This commit is contained in:
2024-08-25 15:11:57 +02:00
parent eb05c41810
commit 3d9e045b56
2 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,10 @@
let (i0, i1) = get-group-span(participants, elmt)
min-i = calc.min(min-i, i0)
max-i = calc.max(max-i, i1)
} else if elmt.type == "sync" {
let (i0, i1) = get-group-span(participants, elmt)
min-i = calc.min(min-i, i0)
max-i = calc.max(max-i, i1)
}
}
return (min-i, max-i)