--spiral-vase now automatically overrides --perimeters, --top-solid-layers and --fill-density instead of throwing incompatibility error. #2360

This commit is contained in:
Alessandro Ranellucci 2014-11-22 23:10:18 +01:00
parent 399fc519e6
commit 3605289bbc
2 changed files with 6 additions and 0 deletions

View file

@ -99,6 +99,11 @@ class DynamicPrintConfig : public DynamicConfig
ConfigOptionBools* opt = this->opt<ConfigOptionBools>("retract_layer_change", true);
opt->values.assign(opt->values.size(), false); // set all values to false
}
{
this->opt<ConfigOptionInt>("perimeters", true)->value = 1;
this->opt<ConfigOptionInt>("top_solid_layers", true)->value = 0;
this->opt<ConfigOptionPercent>("fill_density", true)->value = 0;
}
}
};
};