From cae74be2a4b524e8a437947c78792ece75d13fdc Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Fri, 17 Jan 2025 13:16:18 +0800 Subject: [PATCH] FIX: the filament printable check is incorrect jira: none Change-Id: I3026699e81c287d6bed739175bb37c1f82ae7134 (cherry picked from commit 45689481e5416b3607b440d2c4552e28b8adf22e) --- src/slic3r/GUI/PartPlate.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/slic3r/GUI/PartPlate.cpp b/src/slic3r/GUI/PartPlate.cpp index 2340b9db12..dbf46bc18d 100644 --- a/src/slic3r/GUI/PartPlate.cpp +++ b/src/slic3r/GUI/PartPlate.cpp @@ -1731,10 +1731,8 @@ bool PartPlate::check_filament_printable(const DynamicPrintConfig &config, wxStr { error_message.clear(); FilamentMapMode mode = config.option>("filament_map_mode")->value; - bool has_valid_result = this->is_slice_result_valid(); - // only check printablity if we have explicit map result - if (!has_valid_result && mode != fmmManual) + if (mode != fmmManual) return true; std::vector used_filaments = get_extruders(true); // 1 base