Fix: Update normals when switching scene quality

Recent commits also updated normals for metaballs, curves and volumetric
objects. This change tags will tag to generate geometry for these new
types.
This commit is contained in:
Jeroen Bakker 2021-01-04 13:04:37 +01:00
parent 5ad2e71964
commit dbaf5fb4bb
1 changed files with 1 additions and 1 deletions

View File

@ -1706,7 +1706,7 @@ static void rna_Scene_mesh_quality_update(Main *bmain, Scene *UNUSED(scene), Poi
Scene *scene = (Scene *)ptr->owner_id;
FOREACH_SCENE_OBJECT_BEGIN (scene, ob) {
if (ob->type == OB_MESH) {
if (ELEM(ob->type, OB_MESH, OB_CURVE, OB_VOLUME, OB_MBALL)) {
DEG_id_tag_update(&ob->id, ID_RECALC_GEOMETRY);
}
}