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:
authorJacques Lucke <mail@jlucke.com>2019-05-21 15:39:37 +0300
committerJacques Lucke <mail@jlucke.com>2019-05-21 15:39:57 +0300
commit678f7523b013cdb81068e6e28f03cd724895f306 (patch)
tree5a4eca0b070d60f8adaa65e636f99e56457efcf2 /mesh_tissue
parent8a6d66a1db9fa5dfd3a340e82f3ddcc805170334 (diff)
Fix T64941: Insert missing bpy. to access context after recent changes
Diffstat (limited to 'mesh_tissue')
-rw-r--r--mesh_tissue/tessellate_numpy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_tissue/tessellate_numpy.py b/mesh_tissue/tessellate_numpy.py
index 02464be7..e5f6db5c 100644
--- a/mesh_tissue/tessellate_numpy.py
+++ b/mesh_tissue/tessellate_numpy.py
@@ -73,7 +73,7 @@ def tassellate(ob0, ob1, offset, zscale, gen_modifiers, com_modifiers, mode,
old_me0 = ob0.data # Store generator mesh
if gen_modifiers or com_modifiers:
- depsgraph = context.evaluated_depsgraph_get()
+ depsgraph = bpy.context.evaluated_depsgraph_get()
else:
depsgraph = None