summaryrefslogtreecommitdiff
path: root/src/export/pdf.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-10-31 15:52:16 +0100
committerLaurenz <laurmaedje@gmail.com>2021-10-31 15:52:35 +0100
commit5b344b663a3d224134923eea0d67ebf44c069b07 (patch)
tree34a5fb464a38b9d4cb11294379b3ddf351dfce21 /src/export/pdf.rs
parentfeff013abb17f31bc5305fe77fe67cf615c19ff2 (diff)
Reorganize modules
Instead of separating functionality into layout and library, everything lives in the library now. This way, related things live side by side and there are no duplicate file names in the two directories.
Diffstat (limited to 'src/export/pdf.rs')
-rw-r--r--src/export/pdf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/pdf.rs b/src/export/pdf.rs
index 1ac8149d..5649d552 100644
--- a/src/export/pdf.rs
+++ b/src/export/pdf.rs
@@ -14,9 +14,9 @@ use ttf_parser::{name_id, GlyphId, Tag};
use super::subset;
use crate::font::{find_name, FaceId, FontStore};
+use crate::frame::{Element, Frame, Geometry};
use crate::geom::{self, Color, Em, Length, Paint, Size};
use crate::image::{Image, ImageId, ImageStore};
-use crate::layout::{Element, Frame, Geometry};
use crate::Context;
/// Export a collection of frames into a PDF document.