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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-09 00:36:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-09 00:36:44 +0300
commitc05f4813b650b8b4d45c172c549947e562bf71aa (patch)
tree6f9a4887882a35da09fe6998bbcb318426cb4877 /add_mesh_solid.py
parentcf8e2d201c86bfd6e8dc5817c8b6748787fd2182 (diff)
incorrectly switched mesh.update() --> mesh.update_tag(),
update_tag() tags for depsgraph update only, update() executes normal recalculation and creates edge data.
Diffstat (limited to 'add_mesh_solid.py')
-rw-r--r--add_mesh_solid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_mesh_solid.py b/add_mesh_solid.py
index 8e9c35f7..5bf08128 100644
--- a/add_mesh_solid.py
+++ b/add_mesh_solid.py
@@ -55,7 +55,7 @@ def create_mesh_object(context, verts, edges, faces, name):
mesh.from_pydata(verts, edges, faces)
# Update mesh geometry after adding stuff.
- mesh.update_tag()
+ mesh.update()
import add_object_utils
return add_object_utils.object_data_add(context, mesh, operator=None)