Added "Filament spool weight" option to filament options
This commit is contained in:
parent
e83fb4582c
commit
3d3e36ba8d
7 changed files with 58 additions and 3 deletions
src/libslic3r
|
@ -763,6 +763,13 @@ void PrintConfigDef::init_fff_params()
|
|||
def->min = 0;
|
||||
def->set_default_value(new ConfigOptionFloats { 0. });
|
||||
|
||||
def = this->add("filament_spool_weight", coFloats);
|
||||
def->label = L("Spool weight");
|
||||
def->tooltip = L("Enter your filament spool weight. This is only for statistical information.");
|
||||
def->sidetext = L("g");
|
||||
def->min = 0;
|
||||
def->set_default_value(new ConfigOptionFloats { 1000. });
|
||||
|
||||
def = this->add("filament_settings_id", coStrings);
|
||||
def->set_default_value(new ConfigOptionStrings { "" });
|
||||
def->cli = ConfigOptionDef::nocli;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue