Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Nell <codemanx@gmx.de>2012-04-25 02:34:13 +0400
committerSebastian Nell <codemanx@gmx.de>2012-04-25 02:34:13 +0400
commit5a6ae4e9f5946a49997f8429b0293b912aa69be2 (patch)
tree83c197f93fa1c78882bdb0c5f9a57f7a0fc1a461 /space_view3d_materials_utils.py
parent09e1d7b091b4cd207372f6a06fd43be1b4fd2efc (diff)
Increased object name limits to 63 (the actual maxlen in 2.63)
[[Split portion of a mixed commit.]]
Diffstat (limited to 'space_view3d_materials_utils.py')
-rw-r--r--space_view3d_materials_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index 5baf7e5d..3f49b30d 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -515,7 +515,7 @@ class VIEW3D_OT_assign_material(bpy.types.Operator):
name='Material Name',
description='Name of Material to Assign',
default="",
- maxlen=21,
+ maxlen=63,
)
@classmethod
@@ -570,7 +570,7 @@ class VIEW3D_OT_select_material_by_name(bpy.types.Operator):
matname = StringProperty(
name='Material Name',
description='Name of Material to Select',
- maxlen=21,
+ maxlen=63,
)
@classmethod
@@ -592,11 +592,11 @@ class VIEW3D_OT_replace_material(bpy.types.Operator):
matorg = StringProperty(
name='Material to Replace',
description="Name of Material to Assign",
- maxlen=21,
+ maxlen=63,
)
matrep = StringProperty(name="Replacement material",
description='Name of Material to Assign',
- maxlen=21,
+ maxlen=63,
)
all_objects = BoolProperty(
name="All objects",