diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-04 18:18:55 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-04 18:18:55 +0200 |
| commit | 6672f8f7dfcb38bbda3ec92bdf95341c05e9a782 (patch) | |
| tree | 90ec0d7a36554f9096e5f077ac7828fb6813fca0 /src/library/boxed.rs | |
| parent | 262a8fa36a09527b4e257c175b12c8437279cf66 (diff) | |
Remove Typesetter in favor of typeset function 🎯
Diffstat (limited to 'src/library/boxed.rs')
| -rw-r--r-- | src/library/boxed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/boxed.rs b/src/library/boxed.rs index b36a151b..fe0272bf 100644 --- a/src/library/boxed.rs +++ b/src/library/boxed.rs @@ -33,7 +33,7 @@ pub async fn boxed( ctx.spaces[0].expansion.vertical = true; } - let layouted = layout(&content, ctx).await; + let layouted = layout_tree(&content, ctx).await; let layout = layouted.output.into_iter().next().unwrap(); f.extend(layouted.feedback); |
