[Bf-blender-cvs] [7eab49f] master: Interface / Particles: Fix bad alignment in Rotation panel, sub layout missed the flag.

Thomas Dinges noreply at git.blender.org
Fri Dec 13 10:55:41 CET 2013


Commit: 7eab49f8d923ed3992dff1236e30a62f2d70f460
Author: Thomas Dinges
Date:   Fri Dec 13 10:54:44 2013 +0100
http://developer.blender.org/rB7eab49f8d923ed3992dff1236e30a62f2d70f460

Interface / Particles: Fix bad alignment in Rotation panel, sub layout missed the flag.

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

M	release/scripts/startup/bl_ui/properties_particle.py

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

diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 206a208..f66364a 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -430,9 +430,10 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel, Panel):
             layout.label(text="Angular Velocity:")
 
             split = layout.split()
+
             col = split.column(align=True)
             col.prop(part, "angular_velocity_mode", text="")
-            sub = col.column()
+            sub = col.column(align=True)
             sub.active = part.angular_velocity_mode != 'NONE'
             sub.prop(part, "angular_velocity_factor", text="")




More information about the Bf-blender-cvs mailing list