Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-08-27 16:29:15 +0300
committerHans Goudey <h.goudey@me.com>2021-08-27 16:29:15 +0300
commit104ba1c5682016a55b8a8ed06be52e0c05e913e9 (patch)
tree2c04f9a2d776b005a4791b646ced1ccf0b2d9daf /rigify/generate.py
parent53c7859c9135eeb5274008d4d6caa8364ea0c308 (diff)
Update addons for D9697 "_RNA_UI" removal
This is a followup patch for D9697 which applies the changes to the addon reporistory. Almost all of the changes are in rigify, but there is one change in "curve_tools" and two trivial changes in IO addons. Differential Revision: https://developer.blender.org/D9919
Diffstat (limited to 'rigify/generate.py')
-rw-r--r--rigify/generate.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rigify/generate.py b/rigify/generate.py
index aa9a9a84..caff2633 100644
--- a/rigify/generate.py
+++ b/rigify/generate.py
@@ -21,7 +21,6 @@
import bpy
import re
import time
-from rna_prop_ui import rna_idprop_ui_prop_get
from .utils.errors import MetarigError
from .utils.bones import new_bone
@@ -415,7 +414,6 @@ class Generator(base_generate.BaseGenerator):
#------------------------------------------
# Put the rig_name in the armature custom properties
- rna_idprop_ui_prop_get(obj.data, "rig_id", create=True)
obj.data["rig_id"] = self.rig_id
self.script = rig_ui_template.ScriptGenerator(self)