mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00: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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user