From f81560af47d8f4e9fb1497be5d851de9bbe20918 Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:20:11 -0300 Subject: [PATCH] fix wrong region skipping --- crates/typst-layout/src/grid/repeated.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-layout/src/grid/repeated.rs b/crates/typst-layout/src/grid/repeated.rs index 068a80cea..1402ce621 100644 --- a/crates/typst-layout/src/grid/repeated.rs +++ b/crates/typst-layout/src/grid/repeated.rs @@ -350,7 +350,7 @@ impl<'a> GridLayouter<'a> { // Note that, after the first region skip, the new headers will go // at the top of the region, but after the repeating headers that // remained (which will be automatically placed in 'finish_region'). - self.finish_region(engine, true)?; + self.finish_region(engine, false)?; skipped_region = true; }