Fix error in rigify property generation

37af7e130b missed this change.
This commit is contained in:
Campbell Barton 2021-03-02 22:19:55 +11:00
parent d142dc2d11
commit c875244331
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ class RigifyParameterValidator(object):
if val[0] != bpy.props.CollectionProperty:
val[1]['update'] = update_callback(name)
setattr(self.__params, name, val)
setattr(self.__params, name, val_original)
self.__prop_table[name] = (self.__rig_name, new_def)