Edited captions and default values of the new parameters (initial loading and unloading speed)

This commit is contained in:
Lukas Matena 2018-08-24 12:46:32 +02:00
parent 28c8e176b5
commit be3b8e98da

View File

@ -474,12 +474,12 @@ PrintConfigDef::PrintConfigDef()
def->default_value = new ConfigOptionFloats { 28. };
def = this->add("filament_loading_speed_start", coFloats);
def->label = L("EXPERIMENTAL: Loading speed at the start");
def->label = L("Loading speed at the start");
def->tooltip = L("Speed used at the very beginning of loading phase. ");
def->sidetext = L("mm/s");
def->cli = "filament-loading-speed-start=f@";
def->min = 0;
def->default_value = new ConfigOptionFloats { 9. };
def->default_value = new ConfigOptionFloats { 3. };
def = this->add("filament_unloading_speed", coFloats);
def->label = L("Unloading speed");
@ -491,12 +491,12 @@ PrintConfigDef::PrintConfigDef()
def->default_value = new ConfigOptionFloats { 90. };
def = this->add("filament_unloading_speed_start", coFloats);
def->label = L("EXPERIMENTAL: Unloading speed at the start");
def->label = L("Unloading speed at the start");
def->tooltip = L("Speed used for unloading the tip of the filament immediately after ramming. ");
def->sidetext = L("mm/s");
def->cli = "filament-unloading-speed-start=f@";
def->min = 0;
def->default_value = new ConfigOptionFloats { 83. };
def->default_value = new ConfigOptionFloats { 100. };
def = this->add("filament_toolchange_delay", coFloats);
def->label = L("Delay after unloading");