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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Salazar <zanqdo@gmail.com>2010-06-29 09:02:51 +0400
committerDaniel Salazar <zanqdo@gmail.com>2010-06-29 09:02:51 +0400
commit7b09e47dc4692c09a092fc27cba073302d13f8ff (patch)
tree9f61896b3cc670a616469abc7d67623acb461e27 /release
parent926f94252d4fd2a759a312b8df4b87d9dc68eae6 (diff)
Added name to object color in object properties. Kinda misleading
without it
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_object.py b/release/scripts/ui/properties_object.py
index 98b768b2585..4e60879d665 100644
--- a/release/scripts/ui/properties_object.py
+++ b/release/scripts/ui/properties_object.py
@@ -214,7 +214,7 @@ class OBJECT_PT_display(ObjectButtonsPanel):
col.prop(ob, "draw_name", text="Name")
col.prop(ob, "draw_axis", text="Axis")
col.prop(ob, "draw_wire", text="Wire")
- col.prop(ob, "color", text="")
+ col.prop(ob, "color", text="Object Color")
if wide_ui:
col = split.column()