[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4297] contrib/py/scripts/addons/ anim_selection_sets.py: Selection Sets addon: Update for template_list changes (uses generic UI_UL_list).

Sebastian Nell codemanx at gmx.de
Mon Feb 18 00:55:13 CET 2013


Revision: 4297
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4297
Author:   codemanx
Date:     2013-02-17 23:55:12 +0000 (Sun, 17 Feb 2013)
Log Message:
-----------
Selection Sets addon: Update for template_list changes (uses generic UI_UL_list). Requires >v2.65.4 now.

Modified Paths:
--------------
    contrib/py/scripts/addons/anim_selection_sets.py

Modified: contrib/py/scripts/addons/anim_selection_sets.py
===================================================================
--- contrib/py/scripts/addons/anim_selection_sets.py	2013-02-17 23:03:17 UTC (rev 4296)
+++ contrib/py/scripts/addons/anim_selection_sets.py	2013-02-17 23:55:12 UTC (rev 4297)
@@ -33,8 +33,8 @@
 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 @@
 
         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)



More information about the Bf-extensions-cvs mailing list