fix for error when moving module, broke fracture tools and select internal face operator.

This commit is contained in:
Campbell Barton 2011-07-03 04:28:41 +00:00
parent 3ee2cb9cdb
commit 22bb09d018

View File

@ -105,9 +105,9 @@ def edge_face_count(mesh):
:return: list face users for each item in mesh.edges.
:rtype: list
"""
edge_face_count_dict = edge_face_count_dict(mesh)
edge_face_count = edge_face_count_dict(mesh)
get = dict.get
return [get(edge_face_count_dict, ed.key, 0) for ed in mesh.edges]
return [get(edge_face_count, ed.key, 0) for ed in mesh.edges]
def edge_loops_from_faces(mesh, faces=None, seams=()):