From a46bb8534bc1b036e24285aa8df29dc87f10564f Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Wed, 4 Feb 2026 14:29:26 +0100 Subject: [PATCH] fix: measure sync group span on sync-end --- src/core/utils.typ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils.typ b/src/core/utils.typ index 4d6d003..0dd9ee9 100644 --- a/src/core/utils.typ +++ b/src/core/utils.typ @@ -42,7 +42,7 @@ 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" { + } else if elmt.type == "sync-end" { let (i0, i1) = get-group-span(participants, elmt) min-i = calc.min(min-i, i0) max-i = calc.max(max-i, i1)