Open jakobhellermann opened 8 months ago
I have a Cargo.toml that includes an icon like this:
Cargo.toml
[package.metadata.bundle] name = "Atlas" identifier = "io.github.jakobhellermann.atlas" icon = ["ui/assets/icon/icon_128.png"]
and this icon
But when I run cargo bundle the image ends up looking like this:
cargo bundle
I honestly have no idea why this would be happening.
Hm, if I use my non-downscaled image it works.
But I generated the smaller one using convert icon.png -resize 128x128 icon_128.png, so I don't know what exactly in the imagemagick output broke it.
convert icon.png -resize 128x128 icon_128.png
I have a
Cargo.toml
that includes an icon like this:and this icon
But when I run
cargo bundle
the image ends up looking like this:I honestly have no idea why this would be happening.