From ccd993b63d68b1fc0ddef5cf03a73f65e8bc584b Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Wed, 8 Jan 2025 19:43:19 +0800 Subject: [PATCH] FIX: swapping high temperature plate and texture plate icons jira: STUDIO-9442 Change-Id: I5b3a510bf48831048bd30921a64212e4a1b18098 --- src/slic3r/GUI/Plater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index ec5ac9203..b2c8965e2 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -234,8 +234,8 @@ void Plater::show_illegal_characters_warning(wxWindow* parent) static std::map bed_type_thumbnails = { {BedType::btPC, "bed_cool"}, {BedType::btEP, "bed_engineering"}, - {BedType::btPEI, "bed_pei"}, - {BedType::btPTE, "bed_high_templ"}, + {BedType::btPEI, "bed_high_templ"}, + {BedType::btPTE, "bed_pei"}, {BedType::btSuperTack, "bed_cool_supertack"} };