Skip to content
Snippets Groups Projects
Commit 2ef4f6d8 authored by Sebastian Nell's avatar Sebastian Nell
Browse files

Selection Sets addon: Update for template_list changes (uses generic...

Selection Sets addon: Update for template_list changes (uses generic UI_UL_list). Requires >v2.65.4 now.
parent e181d668
No related branches found
No related tags found
No related merge requests found
......@@ -33,8 +33,8 @@ import bpy
bl_info = {
"name": "Selection Set",
"author": "Dan Eicher",
"version": (0, 1, 0),
"blender": (2, 63, 0),
"version": (0, 1, 1),
"blender": (2, 65, 4),
"location": "Properties -> Object Data -> Selection Sets",
"description": "Selection Sets to select groups of bones",
"warning": "Proxy armatures need to export sets and run generated script on re-opening file",
......@@ -286,7 +286,7 @@ class DATA_PT_bone_sets(bpy.types.Panel):
row = layout.row()
row.template_list(arm, "selection_sets", arm, "active_selection_set",
row.template_list("UI_UL_list", "", arm, "selection_sets", arm, "active_selection_set",
rows=(5 if len(arm.selection_sets) else 2))
col = row.column(align=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment