missed renaming after api modification, used to cycle proportional edit falloffs with Shift+O.

This commit is contained in:
Campbell Barton 2011-04-03 22:28:33 +00:00
parent c118d644d9
commit 9decca10e0

@ -335,7 +335,7 @@ class WM_OT_context_cycle_enum(bpy.types.Operator):
if type(rna_prop) != bpy.types.EnumProperty:
raise Exception("expected an enum property")
enums = rna_struct.properties[rna_prop_str].items.keys()
enums = rna_struct.properties[rna_prop_str].enum_items.keys()
orig_index = enums.index(orig_value)
# Have the info we need, advance to the next item