mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
FIX: modify the max volumetric speed of default fliament
Signed-off-by: qing.zhang <qing.zhang@bambulab.com> Change-Id: I6c84b35d0b4a663a3f2fdd96ce2fa5a7dd3208b7
This commit is contained in:
parent
9e89a1e10e
commit
9c32cff1dd
4 changed files with 26 additions and 2 deletions
|
@ -1075,11 +1075,12 @@ void PrintConfigDef::init_fff_params()
|
|||
def->label = L("Max volumetric speed");
|
||||
def->tooltip = L("This setting stands for how much volume of filament can be melted and extruded per second. "
|
||||
"Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. "
|
||||
"Zero means no limit");
|
||||
"Can't be zero");
|
||||
def->sidetext = L("mm³/s");
|
||||
def->min = 0;
|
||||
def->max = 50;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloats { 0. });
|
||||
def->set_default_value(new ConfigOptionFloats { 2. });
|
||||
|
||||
def = this->add("filament_minimal_purge_on_wipe_tower", coFloats);
|
||||
def->label = L("Minimal purge on wipe tower");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue