Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Aug 20, 2024
1 parent 492f059 commit 33740b1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pub mod document;
pub mod font;
mod graphics_state;
mod object;
mod outline;
pub mod paint;
pub mod path;
pub mod resource;
Expand Down
1 change: 0 additions & 1 deletion src/object/ext_g_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ impl Object for ExtGState {
ext_st.blend_mode(bm);
}

ext_st.overprint(false);

if let Some(mask_ref) = mask_ref {
ext_st.pair(Name(b"SMask"), mask_ref);
Expand Down
2 changes: 1 addition & 1 deletion src/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::collections::HashMap;
use std::hash::Hash;
use std::sync::Arc;
use tiny_skia_path::Rect;
use crate::outline::Outline;
use crate::object::outline::Outline;

#[derive(Copy, Clone, Debug)]
pub struct SvgSettings {
Expand Down

0 comments on commit 33740b1

Please sign in to comment.