mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
Fix typos and style inconsistencies related to configuration (#2580)
* Fix 'min' accidentally defined as 'max' * Remove duplicate retract_lift_above/below definitions * Add correct unit for jerk * Make speed tooltip consistent with others * Remove accidental 's' in Qidi XPlus config * Remove trailing comma in RatRig config * Add 'type' field to KP3S PRO configs * Revert "Make speed tooltip consistent with others" This reverts commit16c0575181
. * Revert "Remove duplicate retract_lift_above/below definitions" This reverts commit54ca51f3de
. * Remove non-translated retract_lift_above/below definitions * Update PrintConfig.cpp Revert jerk unit
This commit is contained in:
parent
905d104ded
commit
f1345d276b
7 changed files with 7 additions and 18 deletions
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"type": "process",
|
||||
"compatible_printers": [
|
||||
"Kingroon KP3S PRO S1 0.4 nozzle"
|
||||
],
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"type": "process",
|
||||
"compatible_printers": [
|
||||
"Kingroon KP3S PRO S1 0.4 nozzle"
|
||||
],
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"type": "process",
|
||||
"compatible_printers": [
|
||||
"Kingroon KP3S PRO S1 0.4 nozzle"
|
||||
],
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"type": "process",
|
||||
"compatible_printers": [
|
||||
"Kingroon KP3S PRO V2 0.4 nozzle"
|
||||
],
|
||||
|
|
|
@ -8,4 +8,4 @@
|
|||
"compatible_printers": [
|
||||
"Qidi X-Plus 3 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,6 @@
|
|||
"gap_infill_speed": "100",
|
||||
"travel_speed": "350",
|
||||
"compatible_printers": [
|
||||
"RatRig V-Core 3 500 0.4 nozzle",
|
||||
"RatRig V-Core 3 500 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -651,7 +651,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->tooltip = L("Bed temperature of the initial layer. "
|
||||
"Value 0 means the filament does not support to print on the Textured PEI Plate");
|
||||
def->sidetext = L("°C");
|
||||
def->max = 0;
|
||||
def->min = 0;
|
||||
def->max = 300;
|
||||
def->set_default_value(new ConfigOptionInts{45});
|
||||
|
||||
|
@ -3043,21 +3043,6 @@ def = this->add("filament_loading_speed", coFloats);
|
|||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionFloats { 0.4 });
|
||||
|
||||
def = this->add("retract_lift_above", coFloats);
|
||||
def->label = L("Z hop lower boundary");
|
||||
def->tooltip = L("Z hop will only come into effect when Z is above this value and is below the parameter: \"Z hop upper boundary\"");
|
||||
def->sidetext = L("mm");
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloats{0.});
|
||||
|
||||
def = this->add("retract_lift_below", coFloats);
|
||||
def->label = L("Z hop upper boundary");
|
||||
def->tooltip = L("If this value is positive, Z hop will only come into effect when Z is above the parameter: \"Z hop lower boundary\" and is below this value");
|
||||
def->sidetext = L("mm");
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloats{0.});
|
||||
|
||||
|
||||
def = this->add("z_hop_types", coEnums);
|
||||
def->label = L("Z hop type");
|
||||
def->tooltip = L("Z hop type");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue