diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-22 14:31:09 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-23 14:53:55 +0100 |
| commit | e1f29d6cb9437a4afb2e4fc4ee10a5b8717ab9fa (patch) | |
| tree | 1ce5f2bd858f6665d3867a2939d4b474c1b70377 /src/export | |
| parent | 2bf32c51bceb2f3a8b7ebea3d7c7d6d96757591b (diff) | |
Rework the core context
Diffstat (limited to 'src/export')
| -rw-r--r-- | src/export/pdf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/pdf.rs b/src/export/pdf.rs index 18bb5385..b39f47ea 100644 --- a/src/export/pdf.rs +++ b/src/export/pdf.rs @@ -33,7 +33,7 @@ pub fn pdf(ctx: &Context, frames: &[Arc<Frame>]) -> Vec<u8> { } /// Identifies the sRGB color space definition. -pub const SRGB: Name<'static> = Name(b"sRGB"); +const SRGB: Name<'static> = Name(b"sRGB"); /// An exporter for a whole PDF document. struct PdfExporter<'a> { |
