fix(icon): from_svg_bytes should not default to symbolic

This commit is contained in:
Michael Aaron Murphy 2025-12-05 17:16:35 +01:00
parent 2ffd1f32f4
commit 6793950bbc
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -94,7 +94,7 @@ pub fn from_raster_pixels(
/// Create a SVG handle from memory.
pub fn from_svg_bytes(bytes: impl Into<Cow<'static, [u8]>>) -> Handle {
Handle {
symbolic: true,
symbolic: false,
data: Data::Svg(svg::Handle::from_memory(bytes)),
}
}