[Bf-extensions-cvs] [b8cf870] master: align columns (for multi-drag)

Campbell Barton noreply at git.blender.org
Wed Oct 29 23:18:50 CET 2014


Commit: b8cf87011584114bd92833d894f4248ebc486be4
Author: Campbell Barton
Date:   Wed Oct 29 23:21:15 2014 +0100
Branches: master
https://developer.blender.org/rBAb8cf87011584114bd92833d894f4248ebc486be4

align columns (for multi-drag)

===================================================================

M	system_property_chart.py

===================================================================

diff --git a/system_property_chart.py b/system_property_chart.py
index 951ec0c..9bf8708 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)



More information about the Bf-extensions-cvs mailing list