Skip to content

Commit

Permalink
Support interface fan speed
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever authored and tadeu2 committed Jul 19, 2024
1 parent ac6dcad commit a657d85
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1651,6 +1651,18 @@ void PrintConfigDef::init_fff_params()
def->max = 1000;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInts { 0 });

def = this->add("support_material_interface_fan_speed", coInts);
def->label = L("Support interface fan speed");
def->tooltip = L("This fan speed is enforced during all support interfaces, to be able to weaken their bonding with a high fan speed."
"\nSet to -1 to disable this override."
"\nCan only be overriden by disable_fan_first_layers.");
def->sidetext = L("%");
def->min = -1;
def->max = 100;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInts{ -1 });


def = this->add("fuzzy_skin", coEnum);
def->label = L("Fuzzy Skin");
Expand Down

0 comments on commit a657d85

Please sign in to comment.