Add Astrobox to Print Host options

This commit is contained in:
Spencer Owen 2019-12-28 10:41:48 -07:00 committed by Vojtěch Bubník
parent afbc4a4cf2
commit e7b835dc52
7 changed files with 289 additions and 1 deletions
src/libslic3r

View file

@ -1333,9 +1333,11 @@ void PrintConfigDef::init_fff_params()
def->enum_values.push_back("octoprint");
def->enum_values.push_back("duet");
def->enum_values.push_back("flashair");
def->enum_values.push_back("astrobox");
def->enum_labels.push_back("OctoPrint");
def->enum_labels.push_back("Duet");
def->enum_labels.push_back("FlashAir");
def->enum_values.push_back("AstroBox");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionEnum<PrintHostType>(htOctoPrint));