From 95f90a32da3e273a1805aa1dba67ef973b597958 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Thu, 9 Oct 2025 10:11:52 +0800 Subject: [PATCH] Fix filament grouping color --- src/slic3r/GUI/BitmapCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/BitmapCache.cpp b/src/slic3r/GUI/BitmapCache.cpp index 89c188cd5a..1f4e1a782d 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -567,7 +567,7 @@ bool BitmapCache::load_from_svg_file_change_color(const std::string &filename, u temp_color[7] = '\0'; unsigned int change_color = nsvg__parseColorHex(temp_color); change_color |= (unsigned int) (1.0f * 255) << 24; // opacity - unsigned int green_color = 4282560000; + unsigned int green_color = 0xFF889600; // #009688 for (NSVGshape* shape = image->shapes; shape != nullptr; shape = shape->next) { // find green color if (shape->fill.color == green_color) {