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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-10 13:18:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-10 13:18:57 +0400
commit01a856c01030b606553e94b8c5a9fdda4b568674 (patch)
treeb996dc5ce00ce03a2b30ee6ec1bc62a31297d4ec
parent7912d4ffc8ba3a2c24b4bf3615f5f8cf433928cd (diff)
alignment properties
-rw-r--r--space_view3d_property_chart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/space_view3d_property_chart.py b/space_view3d_property_chart.py
index 805dd311..0ad9f39d 100644
--- a/space_view3d_property_chart.py
+++ b/space_view3d_property_chart.py
@@ -67,11 +67,13 @@ class View3DEditProps(bpy.types.Panel):
strings = strings.split()
row = col.row(align=True)
+ row.label(text=" ")
for attr_string in strings:
row.label(text=attr_string.rsplit(".", 1)[-1])
for obj in obj_type_sel:
row = col.row(align=True)
+ row.label(text=obj.name)
for attr_string in strings:
attrs = attr_string.split(".")