From 59bca995fbb9e515be0c71f811e4448a1237c438 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Thu, 9 Oct 2025 23:13:09 +0800 Subject: [PATCH] Fix filament grouping color #2 --- 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 1f4e1a782d..10a67f784d 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -348,7 +348,7 @@ wxBitmap* BitmapCache::load_svg(const std::string &bitmap_name, unsigned target_ replaces["#009688"] = "#00675b"; if (!new_color.empty()) - replaces["\"#00AE42\""] = "\"" + new_color + "\""; + replaces["\"#009688\""] = "\"" + new_color + "\""; NSVGimage *image = nullptr; if (strstr(bitmap_name.c_str(), "printer_thumbnail") == NULL) {