From 82df02d67a4479b5631eede9c7b42c4e645e46dc Mon Sep 17 00:00:00 2001 From: lessneek <1essn33k@gmail.com> Date: Tue, 31 Dec 2024 05:26:13 +0300 Subject: [PATCH] Fix the issue with incorrect symbolic icon names --- build_icons/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_icons/src/lib.rs b/build_icons/src/lib.rs index 3b8f622f..b4a850df 100644 --- a/build_icons/src/lib.rs +++ b/build_icons/src/lib.rs @@ -137,7 +137,7 @@ pub fn bundle_icons
( write!( out_file, "/// Icon name of the icon `{icon}`, found at `{path}`\n\ - pub const {const_name}: &str = \"{icon}\";\n" + pub const {const_name}: &str = \"{icon}-symbolic\";\n" ) .unwrap(); }