From a497769558a67f2921294c8a1172272eecf61b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= Date: Mon, 6 Jun 2022 08:58:54 +0200 Subject: [PATCH] Modified the description of pressure equalizer parameters and moved it to the separate section. --- src/libslic3r/PrintConfig.cpp | 10 ++++++---- src/slic3r/GUI/Tab.cpp | 1 + 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 9b55814173..180b58a623 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1804,7 +1804,8 @@ void PrintConfigDef::init_fff_params() def = this->add("max_volumetric_extrusion_rate_slope_positive", coFloat); def->label = L("Max volumetric slope positive"); - def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate. " + def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate" + "for a transition from lower speed to higher speed. " "A value of 1.8 mm³/s² ensures, that a change from the extrusion rate " "of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) " "to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."); @@ -1815,10 +1816,11 @@ void PrintConfigDef::init_fff_params() def = this->add("max_volumetric_extrusion_rate_slope_negative", coFloat); def->label = L("Max volumetric slope negative"); - def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate. " + def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate" + "for a transition from higher speed to lower speed. " "A value of 1.8 mm³/s² ensures, that a change from the extrusion rate " - "of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) " - "to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."); + "of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 60 mm/s) " + "to 5.4 mm³/s (feedrate 20 mm/s) will take at least 2 seconds."); def->sidetext = L("mm³/s²"); def->min = 0; def->mode = comExpert; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index fc9440e45a..4530068e15 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1612,6 +1612,7 @@ void TabPrint::build() optgroup->append_single_option_line("max_print_speed", "max-volumetric-speed_127176"); optgroup->append_single_option_line("max_volumetric_speed", "max-volumetric-speed_127176"); + optgroup = page->new_optgroup(L("Pressure equalizer (experimental)")); optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_positive"); optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_negative");