[Bf-extensions-cvs] [c8752443] master: Fix error in rigify property generation

Campbell Barton noreply at git.blender.org
Tue Mar 2 12:20:59 CET 2021


Commit: c8752443311b133f8783a6b9b2152eb7c92d06a7
Author: Campbell Barton
Date:   Tue Mar 2 22:19:55 2021 +1100
Branches: master
https://developer.blender.org/rBAc8752443311b133f8783a6b9b2152eb7c92d06a7

Fix error in rigify property generation

37af7e130b99865575f1fa2315ef806f815b0f42 missed this change.

===================================================================

M	rigify/__init__.py

===================================================================

diff --git a/rigify/__init__.py b/rigify/__init__.py
index 65947ee8..4d208e4c 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -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)



More information about the Bf-extensions-cvs mailing list