Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/modifiers/intern/MOD_nodes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc
index becf74d5cce..c58dee54aa9 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -1231,7 +1231,7 @@ static GeometrySet compute_geometry(const DerivedNodeTree &tree,
return;
}
GeometrySet geometry_set = *(const GeometrySet *)value.get();
- geometry_set.ensure_own_non_instances();
+ geometry_set.ensure_owns_direct_data();
BKE_object_preview_geometry_set(ctx->object, new GeometrySet(std::move(geometry_set)));
};