iced icon indicating copy to clipboard operation
iced copied to clipboard

Image fails to render image/vnd.microsoft.icon

Open oknozor opened this issue 2 years ago • 0 comments

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. image

Other icon format renders as expected : image

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" }

oknozor avatar Oct 12 '21 11:10 oknozor