Mod: make sure to call the base class' handleChangedPropertyType

This commit is contained in:
wmayer
2021-09-15 14:07:32 +02:00
parent 2295c4b9a3
commit fa86b0216e
14 changed files with 51 additions and 6 deletions

View File

@@ -305,6 +305,9 @@ void ViewProvider2DObjectGrid::handleChangedPropertyType(Base::XMLReader &reader
floatProp.Restore(reader);
static_cast<App::PropertyFloat*>(prop)->setValue(floatProp.getValue());
}
else {
ViewProviderPart::handleChangedPropertyType(reader, TypeName, prop);
}
}
void ViewProvider2DObjectGrid::attach(App::DocumentObject *pcFeat)