Skip to content

Commit 4b79e28

Browse files
committed
mesh_summary update for 2.80 release
1 parent 1f8c3e3 commit 4b79e28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mesh_summary.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
bl_info = {
3131
"name": "Mesh Summary",
3232
"author": "sambler",
33-
"version": (1,2),
33+
"version": (1,3),
3434
"blender": (2, 80, 0),
3535
"location": "Properties > Scene > Object Info Panel",
3636
"description": "Summarize details about the mesh objects in this file.",
@@ -158,7 +158,7 @@ def draw(self, context):
158158
if prefs.calculate_modifier_verts:
159159
detailRow = dataCols[2].row()
160160
bm = bmesh.new()
161-
bm.from_object(mo[0], context.depsgraph)
161+
bm.from_object(mo[0], context.evaluated_depsgraph_get())
162162
detailRow.label(text="("+us(len(bm.verts))+")")
163163
bm.free()
164164
detailRow = dataCols[3].row()

0 commit comments

Comments
 (0)