[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3381] trunk/py/scripts/addons/ io_anim_acclaim/__init__.py: Increased Armature name maxlen to actual limit of 63.

Sebastian Nell codemanx at gmx.de
Mon May 21 19:02:07 CEST 2012


Revision: 3381
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3381
Author:   codemanx
Date:     2012-05-21 17:02:07 +0000 (Mon, 21 May 2012)
Log Message:
-----------
Increased Armature name maxlen to actual limit of 63. Could have also changed io_anim_c3d, but it's a prefix string - not making sense to increase max prefix length to max name length.

Modified Paths:
--------------
    trunk/py/scripts/addons/io_anim_acclaim/__init__.py

Modified: trunk/py/scripts/addons/io_anim_acclaim/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_anim_acclaim/__init__.py	2012-05-21 14:53:19 UTC (rev 3380)
+++ trunk/py/scripts/addons/io_anim_acclaim/__init__.py	2012-05-21 17:02:07 UTC (rev 3381)
@@ -319,7 +319,7 @@
             subtype='FILE_PATH',
             )
     armature_name = StringProperty(
-            name="Armature Name", maxlen=32,
+            name="Armature Name", maxlen=63,
             default="Skeleton",
             description="Name of the new object",
             )



More information about the Bf-extensions-cvs mailing list