Open
Description
I am trying to render some image/vnd.microsoft.icon
images.
Row::new().push(
Image::new(&icon.path)
.height(Length::Units(32))
.width(Length::Units(32)))
These are favicons fetched from various domain name :
When rendering like this I am getting nothing for image/vnd.microsoft.icon
.
Other icon format renders as expected :
iced version :
iced = { git = "https://github.com/hecrj/iced", features = ["wgpu", "default_system_font", "palette", "svg", "image"] }
iced_native = { git = "https://github.com/hecrj/iced" }
iced_style = { git = "https://github.com/hecrj/iced" }