Skip to content

Commit

Permalink
Merge pull request #1593 from ben-wallis/xvar/fix-glow-image-svg
Browse files Browse the repository at this point in the history
Fixed iced_glow crate compilation when image feature is enabled and the svg feature is disabled
  • Loading branch information
hecrj authored Dec 12, 2022
2 parents 7ceb8b8 + e9576ed commit 02182ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glow/src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl Pipeline {
}

#[cfg(not(feature = "svg"))]
layer::Image::Vector { handle: _, bounds } => (None, bounds),
layer::Image::Vector { bounds, .. } => (None, bounds),
};

unsafe {
Expand Down

0 comments on commit 02182ee

Please sign in to comment.