FIX: the filament printable check is incorrect

jira: none
Change-Id: I3026699e81c287d6bed739175bb37c1f82ae7134
This commit is contained in:
zhimin.zeng 2025-01-17 13:16:18 +08:00 committed by lane.wei
parent 34ed8441a1
commit 45689481e5
1 changed files with 1 additions and 3 deletions

View File

@ -1315,10 +1315,8 @@ bool PartPlate::check_filament_printable(const DynamicPrintConfig &config, wxStr
{
error_message.clear();
FilamentMapMode mode = config.option<ConfigOptionEnum<FilamentMapMode>>("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<int> used_filaments = get_extruders(true); // 1 base