the generated file icon_names.rs contains these lines:
/// Icon name of the icon `network-workgroup`, found at `"icons/icon-development-kit/network-workgroup-symbolic.svg"`.
pub const NETWORK_WORKGROUP: &str = "network-workgroup";
the problem is the icon shown is not network-workgroup-symbolic but simple network-workgroup with colors.
If I set_icon_name: Some("network-workgroup-symbolic") I get a symbolic icon as expected.
I have
"network-workgroup"
in theicons.toml
file and use it in code:the generated file
icon_names.rs
contains these lines:the problem is the icon shown is not
network-workgroup-symbolic
but simplenetwork-workgroup
with colors. If Iset_icon_name: Some("network-workgroup-symbolic")
I get a symbolic icon as expected.