Mod: make sure to call the base class' handleChangedPropertyType

This commit is contained in:
wmayer
2021-09-15 14:07:32 +02:00
parent 33f3fa6865
commit 4327cd5ccb
14 changed files with 51 additions and 6 deletions

View File

@@ -200,6 +200,9 @@ void LinearPattern::handleChangedPropertyType(Base::XMLReader& reader, const cha
OccurrencesProperty.Restore(reader);
Occurrences.setValue(OccurrencesProperty.getValue());
}
else {
Transformed::handleChangedPropertyType(reader, TypeName, prop);
}
}
}