We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f8c3e3 commit 4b79e28Copy full SHA for 4b79e28
mesh_summary.py
@@ -30,7 +30,7 @@
30
bl_info = {
31
"name": "Mesh Summary",
32
"author": "sambler",
33
- "version": (1,2),
+ "version": (1,3),
34
"blender": (2, 80, 0),
35
"location": "Properties > Scene > Object Info Panel",
36
"description": "Summarize details about the mesh objects in this file.",
@@ -158,7 +158,7 @@ def draw(self, context):
158
if prefs.calculate_modifier_verts:
159
detailRow = dataCols[2].row()
160
bm = bmesh.new()
161
- bm.from_object(mo[0], context.depsgraph)
+ bm.from_object(mo[0], context.evaluated_depsgraph_get())
162
detailRow.label(text="("+us(len(bm.verts))+")")
163
bm.free()
164
detailRow = dataCols[3].row()
0 commit comments