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/export | |
| parent | 262a8fa36a09527b4e257c175b12c8437279cf66 (diff) | |
Remove Typesetter in favor of typeset function 🎯
Diffstat (limited to 'src/export')
| -rw-r--r-- | src/export/pdf.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/export/pdf.rs b/src/export/pdf.rs index 1bed2188..d4d1adf2 100644 --- a/src/export/pdf.rs +++ b/src/export/pdf.rs @@ -14,8 +14,7 @@ use tide::{PdfWriter, Rect, Ref, Trailer, Version}; use ttf_parser::{name_id, GlyphId}; use crate::font::FontLoader; -use crate::layout::elements::LayoutElement; -use crate::layout::BoxLayout; +use crate::layout::{BoxLayout, LayoutElement}; use crate::length::Length; /// Export a list of layouts into a _PDF_ document. |
