Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
5a6ae4e9
Commit
5a6ae4e9
authored
12 years ago
by
Sebastian Nell
Browse files
Options
Downloads
Patches
Plain Diff
Increased object name limits to 63 (the actual maxlen in 2.63)
[[Split portion of a mixed commit.]]
parent
09e1d7b0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
space_view3d_materials_utils.py
+4
-4
4 additions, 4 deletions
space_view3d_materials_utils.py
with
4 additions
and
4 deletions
space_view3d_materials_utils.py
+
4
−
4
View file @
5a6ae4e9
...
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment