mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-14 04:27:36 +00:00
Parameter and tool tip tweaking
This commit is contained in:
@@ -2494,12 +2494,12 @@ def = this->add("filament_loading_speed", coFloats);
|
|||||||
def->label = L("Smoothing segment length");
|
def->label = L("Smoothing segment length");
|
||||||
def->tooltip = L("A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger gcode file "
|
def->tooltip = L("A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger gcode file "
|
||||||
"and more instructions for the printer to process. \n\n"
|
"and more instructions for the printer to process. \n\n"
|
||||||
"Default value of 2 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made\n\n"
|
"Default value of 1 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made\n\n"
|
||||||
"Allowed values: 1-5");
|
"Allowed values: 1-5");
|
||||||
def->min = 1;
|
def->min = 1;
|
||||||
def->max = 5;
|
def->max = 5;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionInt(2));
|
def->set_default_value(new ConfigOptionInt(1));
|
||||||
|
|
||||||
def = this->add("fan_min_speed", coInts);
|
def = this->add("fan_min_speed", coInts);
|
||||||
def->label = L("Fan speed");
|
def->label = L("Fan speed");
|
||||||
|
|||||||
Reference in New Issue
Block a user