From 2ef4f6d8a16201f86a64f7d17d249a8c7fb6dc9f Mon Sep 17 00:00:00 2001 From: Sebastian Nell <codemanx@gmx.de> Date: Sun, 17 Feb 2013 23:55:12 +0000 Subject: [PATCH] Selection Sets addon: Update for template_list changes (uses generic UI_UL_list). Requires >v2.65.4 now. --- anim_selection_sets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anim_selection_sets.py b/anim_selection_sets.py index 5b87add9..d2898b7e 100644 --- a/anim_selection_sets.py +++ b/anim_selection_sets.py @@ -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) -- GitLab