removed the --gui parameter from the slic3r wrapper.

Fixed the perl bindings
This commit is contained in:
bubnikv 2019-03-13 17:06:45 +01:00
parent 96d88e550e
commit cea6ca83db
3 changed files with 5 additions and 8 deletions

View file

@ -251,7 +251,7 @@ bool ConfigBase__set(ConfigBase* THIS, const t_config_option_key &opt_key, SV* v
case coPoint:
return from_SV_check(value, &static_cast<ConfigOptionPoint*>(opt)->value);
case coPoint3:
return from_SV_check(value, &static_cast<ConfigOptionPoint3*>(&opt)->value);
return from_SV_check(value, &static_cast<ConfigOptionPoint3*>(opt)->value);
case coPoints:
{
std::vector<Vec2d> &values = static_cast<ConfigOptionPoints*>(opt)->values;