Skip to content

Commit 02182ee

Browse files
authored
Merge pull request #1593 from ben-wallis/xvar/fix-glow-image-svg
Fixed iced_glow crate compilation when image feature is enabled and the svg feature is disabled
2 parents 7ceb8b8 + e9576ed commit 02182ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

glow/src/image.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl Pipeline {
192192
}
193193

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

198198
unsafe {

0 commit comments

Comments
 (0)