From b547933f14f00754ff589a1006b777bd5cfcd107 Mon Sep 17 00:00:00 2001 From: "qing.zhang" Date: Fri, 14 Feb 2025 11:09:20 +0800 Subject: [PATCH] ENH: change param's label Jira: none use Smoothing wall speed alone Z for better understanding Signed-off-by: qing.zhang Change-Id: Idaa4241feb4bb91d30e94c8522b58f1147c8009e --- src/libslic3r/PrintConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 9a176017a..919077f89 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -695,7 +695,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionBool(false)); def = this->add("z_direction_outwall_speed_continuous", coBool); - def->label = L("Smoothing wall speed in z direction(experimental)"); + def->label = L("Smoothing wall speed along Z(experimental)"); def->category = L("Quality"); def->tooltip = L("Smoothing outwall speed in z direction to get better surface quality. Print time will increases. It is not work on spiral vase mode."); def->mode = comAdvanced; @@ -2390,7 +2390,7 @@ void PrintConfigDef::init_fff_params() def = this->add("infill_rotate_step", coFloat); def->label = L("Infill rotate step"); def->category = L("Strength"); - def->tooltip = L("This parameter adds a slight rotation to each layer of infill to create a cross cross texture."); + def->tooltip = L("This parameter adds a slight rotation to each layer of infill to create a cross texture."); def->sidetext = L("°"); def->min = 0; def->max = 360;