mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
ENH: don't apply new fan speed until filament change finished
This patch can make sure that the cooling fan will not be enabled during change fimanet. Signed-off-by: salt.wei <salt.wei@bambulab.com> Change-Id: I9f480b99116d62fe7522233b69b5bca209663821
This commit is contained in:
parent
9c7d55b8b4
commit
bd577fafb2
3 changed files with 10 additions and 8 deletions
|
@ -2647,7 +2647,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->sidetext = L("°C");
|
||||
def->min = 0;
|
||||
def->max = max_temp;
|
||||
def->set_default_value(new ConfigOptionInts { 0 });
|
||||
def->set_default_value(new ConfigOptionInts { 190 });
|
||||
|
||||
def = this->add("nozzle_temperature_range_high", coInts);
|
||||
def->label = L("Max");
|
||||
|
@ -2655,7 +2655,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->sidetext = L("°C");
|
||||
def->min = 0;
|
||||
def->max = max_temp;
|
||||
def->set_default_value(new ConfigOptionInts { 0 });
|
||||
def->set_default_value(new ConfigOptionInts { 240 });
|
||||
|
||||
def = this->add("bed_temperature_difference", coInts);
|
||||
def->label = L("Bed temperature difference");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue