From 1d50e208b2489c45878781d26fb7017a866af412 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Mon, 27 Nov 2023 16:01:42 +0800 Subject: [PATCH] FIX: support do not generate jira:[NEW] Signed-off-by: xun.zhang Change-Id: Ide9709d95203185538e280517f7aa6136beeda44 --- src/libslic3r/GCode.cpp | 3 ++- src/libslic3r/PrintConfig.cpp | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index aa28344ef..e58d5f4b5 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -3214,13 +3214,14 @@ GCode::LayerResult GCode::process_layer( dontcare_extruder = extruder_id; break; } - + #if 0 //BBS: not found a suitable extruder in current layer ,dontcare_extruider==first_extruder_id==interface_extruder if (dontcare_extruder == interface_extruder && (object.config().support_interface_not_for_body && object.config().support_interface_filament.value!=0)) { // BBS : get a suitable extruder from other layer auto all_extruders = print.extruders(); dontcare_extruder = get_next_extruder(dontcare_extruder, all_extruders); } + #endif if (support_dontcare) support_extruder = dontcare_extruder; diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index d54fa88bb..f9497fc49 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3037,9 +3037,9 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionInt(0)); def = this->add("support_interface_not_for_body",coBool); - def->label = L("No interface filament for body"); + def->label = L("No interface filament for base"); def->category = L("Support"); - def->tooltip = L("Don't use support interface filament to print support body"); + def->tooltip = L("Don't use support interface filament to print support base"); def->mode = comSimple; def->set_default_value(new ConfigOptionBool(true));