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>2014-10-30 01:21:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-10-30 01:21:15 +0300
commitb8cf87011584114bd92833d894f4248ebc486be4 (patch)
tree89ef9475dc162b6d28dcf950e334ac864e7fe428 /system_property_chart.py
parent0de4052432b34680d4441704b99ae2238eae25a1 (diff)
align columns (for multi-drag)
Diffstat (limited to 'system_property_chart.py')
-rw-r--r--system_property_chart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/system_property_chart.py b/system_property_chart.py
index 951ec0c8..9bf87085 100644
--- a/system_property_chart.py
+++ b/system_property_chart.py
@@ -145,13 +145,13 @@ def _property_chart_draw(self, context):
row = layout.row(align=True)
- col = row.column()
+ col = row.column(align=True)
col.label(text="name")
for obj, prop_pairs in prop_all:
col.prop(obj, "name", text="")
for i in range(len(strings)):
- col = row.column()
+ col = row.column(align=True)
# name and copy button
rowsub = col.row(align=False)