From 6793950bbc6039eb59cfd0ee92a95919fb636e81 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 5 Dec 2025 17:16:35 +0100 Subject: [PATCH] fix(icon): from_svg_bytes should not default to symbolic --- src/widget/icon/handle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/icon/handle.rs b/src/widget/icon/handle.rs index a4ddd364..7e0bab02 100644 --- a/src/widget/icon/handle.rs +++ b/src/widget/icon/handle.rs @@ -94,7 +94,7 @@ pub fn from_raster_pixels( /// Create a SVG handle from memory. pub fn from_svg_bytes(bytes: impl Into>) -> Handle { Handle { - symbolic: true, + symbolic: false, data: Data::Svg(svg::Handle::from_memory(bytes)), } }