Index: release/scripts/startup/bl_ui/properties_data_armature.py |
=================================================================== |
--- release/scripts/startup/bl_ui/properties_data_armature.py (révision 53009) |
+++ release/scripts/startup/bl_ui/properties_data_armature.py (copie de travail) |
@@ -124,7 +124,7 @@ |
rows = 2 |
if group: |
rows = 5 |
- row.template_list(pose, "bone_groups", pose.bone_groups, "active_index", rows=rows) |
+ row.template_list("UI_UL_list", "", pose, "bone_groups", pose.bone_groups, "active_index", rows=rows) |
col = row.column(align=True) |
col.active = (ob.proxy is None) |
@@ -184,7 +184,7 @@ |
if poselib: |
# list of poses in pose library |
row = layout.row() |
- row.template_list(poselib, "pose_markers", poselib.pose_markers, "active_index", rows=5) |
+ row.template_list("UI_UL_list", "", poselib, "pose_markers", poselib.pose_markers, "active_index", rows=5) |
# column of operators for active pose |
# - goes beside list |