mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Allow default_bed_type to be defined in machine profile
update some profiles
This commit is contained in:
@@ -839,6 +839,14 @@ void PrintConfigDef::init_fff_params()
|
||||
def->enum_labels.emplace_back(L("Cool Plate (SuperTack)"));
|
||||
def->set_default_value(new ConfigOptionEnum<BedType>(btPC));
|
||||
|
||||
// Orca: allow profile maker to set default bed type in machine profile
|
||||
// This option won't be shown in the UI
|
||||
def = this->add("default_bed_type", coString);
|
||||
def->label = L("Default bed type");
|
||||
def->tooltip = L("Default bed type for the printer (supports both numeric and string format).");
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionString());
|
||||
|
||||
// BBS
|
||||
def = this->add("first_layer_print_sequence", coInts);
|
||||
def->label = L("First layer print sequence");
|
||||
|
||||
Reference in New Issue
Block a user