From ff02a5e2acc23670aee6b680b1da9148dc6ea63d Mon Sep 17 00:00:00 2001 From: "qing.zhang" Date: Thu, 7 Nov 2024 15:26:48 +0800 Subject: [PATCH] ENH: update param name Jira: none Signed-off-by: qing.zhang Change-Id: Ibb2cc4316fd4ff9b7b1d071544567971d0ad9004 --- src/libslic3r/PrintConfig.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 6914c474d..860a914d9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3001,13 +3001,13 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionPercent(15)); def = this->add("seam_slope_conditional", coBool); - def->label = L("Conditional scarf joint"); + def->label = L("Smart scarf seam application"); def->tooltip = L("Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(true)); def = this->add("scarf_angle_threshold", coInt); - def->label = L("Conditional angle threshold"); + def->label = L("Scarf application angle threshold"); def->tooltip = L("This option sets the threshold angle for applying a conditional scarf joint seam.\nIf the seam angle within the perimeter loop " "exceeds this value (indicating the absence of sharp corners), a scarf joint seam will be used. The default value is 155°."); def->mode = comAdvanced; def->sidetext = L("°"); @@ -3043,7 +3043,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionPercent(80)); def = this->add("role_base_wipe_speed", coBool); - def->label = L("Role base wipe speed"); + def->label = L("Role-based wipe speed"); def->tooltip = L("The wipe speed is determined by speed of current extrusion role. " "e.g if a wip action is executed immediately following an outer wall extrusion, the speed of the outer wall extrusion will be utilized for the wipe action."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(true));