mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-29 13:52:07 +00:00
Update adaptive pressure advance option labels and tooltips (#14411)
Co-authored-by: yw4z <ywsyildiz@gmail.com> Co-authored-by: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
This commit is contained in:
@@ -2426,18 +2426,19 @@ void PrintConfigDef::init_fff_params()
|
|||||||
|
|
||||||
// xgettext:no-c-format, no-boost-format
|
// xgettext:no-c-format, no-boost-format
|
||||||
def = this->add("adaptive_pressure_advance_overhangs", coBools);
|
def = this->add("adaptive_pressure_advance_overhangs", coBools);
|
||||||
def->label = L("Enable adaptive pressure advance for overhangs (beta)");
|
def->label = L("Enable adaptive pressure advance within features (beta)");
|
||||||
def->tooltip = L("Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, "
|
def->tooltip = L("Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n\n"
|
||||||
"as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n\n"
|
||||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.");
|
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues.");
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionBools{ false });
|
def->set_default_value(new ConfigOptionBools{ false });
|
||||||
|
|
||||||
def = this->add("adaptive_pressure_advance_bridges", coFloats);
|
def = this->add("adaptive_pressure_advance_bridges", coFloats);
|
||||||
def->label = L("Pressure advance for bridges");
|
def->label = L("Static pressure advance for bridges");
|
||||||
def->tooltip = L("Pressure advance value for bridges. Set to 0 to disable.\n\n"
|
def->tooltip = L("Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. "
|
"equivalent walls (using adaptive settings if enabled).\n\n"
|
||||||
"This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this.");
|
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. "
|
||||||
|
"This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this.");
|
||||||
def->max = 2;
|
def->max = 2;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionFloats { 0.0 });
|
def->set_default_value(new ConfigOptionFloats { 0.0 });
|
||||||
|
|||||||
Reference in New Issue
Block a user