From c3edafcc3331bd971ef8366c521455d882879165 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Tue, 14 Jun 2022 12:48:54 +0200 Subject: [PATCH] Arachne parameter names: unified case with the rest --- src/libslic3r/PrintConfig.cpp | 16 ++++++++-------- src/slic3r/GUI/Tab.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 180b58a623..6ef095cbd0 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3076,7 +3076,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionEnum(PerimeterGeneratorType::Arachne)); def = this->add("wall_transition_length", coFloat); - def->label = L("Wall Transition Length"); + def->label = L("Wall transition length"); def->category = L("Advanced"); def->tooltip = L("When transitioning between different numbers of walls as the part becomes" "thinner, a certain amount of space is allotted to split or join the wall lines."); @@ -3086,7 +3086,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionFloat(0.4)); def = this->add("wall_transition_filter_deviation", coFloatOrPercent); - def->label = L("Wall Transitioning Filter Margin"); + def->label = L("Wall transitioning filter margin"); def->category = L("Advanced"); def->tooltip = L("Prevent transitioning back and forth between one extra wall and one less. This " "margin extends the range of line widths which follow to [Minimum Wall Line " @@ -3101,7 +3101,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionFloatOrPercent(25, true)); def = this->add("wall_transition_angle", coFloat); - def->label = L("Wall Transitioning Threshold Angle"); + def->label = L("Wall transitioning threshold angle"); def->category = L("Advanced"); def->tooltip = L("When to create transitions between even and odd numbers of walls. A wedge shape with" " an angle greater than this setting will not have transitions and no walls will be " @@ -3114,7 +3114,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionFloat(10.)); def = this->add("wall_distribution_count", coInt); - def->label = L("Wall Distribution Count"); + def->label = L("Wall distribution count"); def->category = L("Advanced"); def->tooltip = L("The number of walls, counted from the center, over which the variation needs to be " "spread. Lower values mean that the outer walls don't change in width."); @@ -3123,7 +3123,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionInt(1)); def = this->add("wall_split_middle_threshold", coPercent); - def->label = L("Split Middle Line Threshold"); + def->label = L("Split middle line threshold"); def->category = L("Advanced"); def->tooltip = L("The smallest line width, as a factor of the normal line width, above which the middle " "line (if there is one) will be split into two. Reduce this setting to use more, thinner " @@ -3138,7 +3138,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionPercent(50)); def = this->add("wall_add_middle_threshold", coPercent); - def->label = L("Add Middle Line Threshold"); + def->label = L("Add middle line threshold"); def->category = L("Advanced"); def->tooltip = L("The smallest line width, as a factor of the normal line width, above which a middle " "line (if there wasn't one already) will be added. Reduce this setting to use more, " @@ -3153,7 +3153,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionPercent(75)); def = this->add("min_feature_size", coFloat); - def->label = L("Minimum Feature Size"); + def->label = L("Minimum feature size"); def->category = L("Advanced"); def->tooltip = L("Minimum thickness of thin features. Model features that are thinner than this value will " "not be printed, while features thicker than the Minimum Feature Size will be widened to " @@ -3164,7 +3164,7 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionFloat(0.1)); def = this->add("min_bead_width", coFloatOrPercent); - def->label = L("Minimum Wall Line Width"); + def->label = L("Minimum wall line width"); def->category = L("Advanced"); def->tooltip = L("Width of the wall that will replace thin features (according to the Minimum Feature Size) " "of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature," diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 4530068e15..e997c575f1 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1671,7 +1671,7 @@ void TabPrint::build() optgroup = page->new_optgroup(L("Other")); optgroup->append_single_option_line("clip_multipart_objects"); - optgroup = page->new_optgroup(L("Arachne")); + optgroup = page->new_optgroup(L("Arachne perimeter generator")); optgroup->append_single_option_line("wall_add_middle_threshold"); optgroup->append_single_option_line("wall_split_middle_threshold"); optgroup->append_single_option_line("wall_transition_angle");