Skip to content

Commit

Permalink
Merge branch 'main' into multi-zone-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
GiacomoGuaresi committed Dec 19, 2024
2 parents 1de27b1 + dc820a0 commit ed4bacd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2900,6 +2900,25 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionStrings());


def = this->add("use_active_pellet_feeding", coBool);
def->label = L("Use forded pellet feeding");
def->tooltip = L("Enable this option if your printer has active pellet feeding");
def->mode = comSimple;
def->set_default_value(new ConfigOptionBool(false));

def = this->add("use_extruder_rotation_volume", coBool);
def->label = L("Use extruder rotation volume");
def->tooltip = L("Enable extruder rotation volume in material settings");
def->mode = comSimple;
def->set_default_value(new ConfigOptionBool(true));

def = this->add("active_feeder_motor_name", coStrings);
def->label = L("Active feeder motor name");
def->tooltip = "Name that identify the feeder motor";
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionStrings());


def = this->add("use_active_pellet_feeding", coBool);
def->label = L("Use forded pellet feeding");
def->tooltip = L("Enable this option if your printer has active pellet feeding");
Expand Down

0 comments on commit ed4bacd

Please sign in to comment.