Clarified flow ratio tooltips (#6397)

* Clarified flow ratio tooltips

* Spelling

* Formatting
This commit is contained in:
Ioannis Giannakas 2024-08-09 14:32:24 +01:00 committed by GitHub
parent b8a9c22404
commit ad8cec26af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -897,7 +897,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Bridge flow ratio");
def->category = L("Quality");
def->tooltip = L("Decrease this value slightly(for example 0.9) to reduce the amount of material for bridge, "
"to improve sag");
"to improve sag. \n\nThe actual bridge flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio.");
def->min = 0;
def->max = 2.0;
def->mode = comAdvanced;
@ -906,7 +906,8 @@ void PrintConfigDef::init_fff_params()
def = this->add("internal_bridge_flow", coFloat);
def->label = L("Internal bridge flow ratio");
def->category = L("Quality");
def->tooltip = L("This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill. Decrease this value slightly (for example 0.9) to improve surface quality over sparse infill.");
def->tooltip = L("This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill. Decrease this value slightly (for example 0.9) to improve surface quality over sparse infill."
"\n\nThe actual internal bridge flow used is calculated by multiplying this value with the bridge flow ratio, the filament flow ratio, and if set, the object's flow ratio.");
def->min = 0;
def->max = 2.0;
def->mode = comAdvanced;
@ -916,7 +917,8 @@ void PrintConfigDef::init_fff_params()
def->label = L("Top surface flow ratio");
def->category = L("Advanced");
def->tooltip = L("This factor affects the amount of material for top solid infill. "
"You can decrease it slightly to have smooth surface finish");
"You can decrease it slightly to have smooth surface finish. "
"\n\nThe actual top surface flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio.");
def->min = 0;
def->max = 2;
def->mode = comAdvanced;
@ -925,7 +927,8 @@ void PrintConfigDef::init_fff_params()
def = this->add("bottom_solid_infill_flow_ratio", coFloat);
def->label = L("Bottom surface flow ratio");
def->category = L("Advanced");
def->tooltip = L("This factor affects the amount of material for bottom solid infill");
def->tooltip = L("This factor affects the amount of material for bottom solid infill. "
"\n\nThe actual bottom solid infill flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio.");
def->min = 0;
def->max = 2;
def->mode = comAdvanced;
@ -1664,7 +1667,8 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The material may have volumetric change after switching between molten state and crystalline state. "
"This setting changes all extrusion flow of this filament in gcode proportionally. "
"Recommended value range is between 0.95 and 1.05. "
"Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow");
"Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow. "
"\n\nThe final object flow ratio is this value multiplied by the filament flow ratio.");
def->mode = comAdvanced;
def->max = 2;
def->min = 0.01;