From c5cdbaeaf84bbd68b4ba18979c796f4f0f0f7cd7 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 12 Jun 2023 17:48:30 +0200 Subject: Fix bug with extra table lines Fixes #183 --- library/src/layout/table.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'library/src') diff --git a/library/src/layout/table.rs b/library/src/layout/table.rs index 3235c790..357263f4 100644 --- a/library/src/layout/table.rs +++ b/library/src/layout/table.rs @@ -175,6 +175,10 @@ impl Layout for TableElem { // Add lines and backgrounds. for (frame, rows) in layout.fragment.iter_mut().zip(&layout.rows) { + if layout.cols.is_empty() || rows.is_empty() { + continue; + } + // Render table lines. if let Some(stroke) = &stroke { let thickness = stroke.thickness; -- cgit v1.2.3