Parameter and tool tip tweaking

This commit is contained in:
igiannakas
2023-09-24 11:54:12 +01:00
parent fe6c979f66
commit 79778ee297

View File

@@ -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");