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
path: root/rigify
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-10-22 18:42:24 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-22 19:24:10 +0300
commit0e0e8de0de6022c23729e2d139b9aa47324d7122 (patch)
tree3a84737b574d3f03c3dbc30d41acc3b2b5170fd1 /rigify
parentcadeb9991cb624bfcfa683d164e5fe000732d684 (diff)
Rigify: UI fix left over from OT.type > OT.anim_type change and misc
Diffstat (limited to 'rigify')
-rw-r--r--rigify/ui.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index 249512f9..2effb58f 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -214,7 +214,7 @@ class DATA_PT_rigify_layer_names(bpy.types.Panel):
return
# UI
- main_row = layout.row(align=True).split(0.05)
+ main_row = layout.row(align=True).split(factor=0.05)
col1 = main_row.column()
col2 = main_row.column()
col1.label()
@@ -554,8 +554,8 @@ class DATA_PT_rigify_bone_groups(bpy.types.Panel):
row.template_list("DATA_UL_rigify_bone_groups", "", obj.data, "rigify_colors", obj.data, "rigify_colors_index")
col = row.column(align=True)
- col.operator("armature.rigify_bone_group_add", icon='ZOOMIN', text="")
- col.operator("armature.rigify_bone_group_remove", icon='ZOOMOUT', text="").idx = obj.data.rigify_colors_index
+ col.operator("armature.rigify_bone_group_add", icon='ZOOM_IN', text="")
+ col.operator("armature.rigify_bone_group_remove", icon='ZOOM_OUT', text="").idx = obj.data.rigify_colors_index
col.menu("DATA_MT_rigify_bone_groups_specials", icon='DOWNARROW_HLT', text="")
row = layout.row()
row.prop(armature, 'rigify_theme_to_add', text = 'Theme')
@@ -688,8 +688,8 @@ class VIEW3D_PT_rigify_animation_tools(bpy.types.Panel):
row.operator("rigify.transfer_ik_to_fk", text='FK2IK Action', icon='ACTION_TWEAK')
row = self.layout.row(align=True)
- row.operator("rigify.clear_animation", text="Clear IK Action", icon='CANCEL').type = "IK"
- row.operator("rigify.clear_animation", text="Clear FK Action", icon='CANCEL').type = "FK"
+ row.operator("rigify.clear_animation", text="Clear IK Action", icon='CANCEL').anim_type = "IK"
+ row.operator("rigify.clear_animation", text="Clear FK Action", icon='CANCEL').anim_type = "FK"
row = self.layout.row(align=True)
op = row.operator("rigify.rotation_pole", icon='FORCE_HARMONIC', text='Switch to pole')