From d04f09fa18ee8bdb774d2b42e2d2ef285569c501 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Fri, 17 Jan 2025 11:30:35 +0800 Subject: [PATCH] FIX: The filament_map of the disk is incorrect in manual mode jira: STUDIO-9484 Change-Id: I920f387b10d46c2fa1b9385bf3d920c8b8df8806 (cherry picked from commit 4cf4c82c9e226204be84449d2e7df382d5a73ccf) --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index ed6299e27b..1ea4d29b23 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -15695,7 +15695,7 @@ void Plater::open_filament_map_setting_dialog(wxCommandEvent &evt) curr_plate->set_filament_map_mode(new_map_mode); } - if (new_map_mode == fmmManual && old_filament_maps != new_filament_maps){ + if (new_map_mode == fmmManual){ curr_plate->set_filament_maps(new_filament_maps); }