diff options
Diffstat (limited to 'src/layout/document.rs')
| -rw-r--r-- | src/layout/document.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/document.rs b/src/layout/document.rs index c2d7b38b..69ac3d9d 100644 --- a/src/layout/document.rs +++ b/src/layout/document.rs @@ -39,8 +39,8 @@ impl Pages { .await .into_iter() .filter_map(|item| match item { - LayoutItem::Spacing(_) => None, - LayoutItem::Box(layout, _) => Some(layout), + Layouted::Spacing(_) => None, + Layouted::Box(layout, _) => Some(layout), }) .collect() } |
