[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [20418] branches/blender2.5/blender/ release/ui/buttons_physic_cloth.py: * Tiny cloth panel tweaks

Matt Ebb matt at mke3.net
Tue May 26 07:12:29 CEST 2009


Revision: 20418
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=20418
Author:   broken
Date:     2009-05-26 07:12:27 +0200 (Tue, 26 May 2009)

Log Message:
-----------
* Tiny cloth panel tweaks

Modified Paths:
--------------
    branches/blender2.5/blender/release/ui/buttons_physic_cloth.py

Modified: branches/blender2.5/blender/release/ui/buttons_physic_cloth.py
===================================================================
--- branches/blender2.5/blender/release/ui/buttons_physic_cloth.py	2009-05-26 05:03:27 UTC (rev 20417)
+++ branches/blender2.5/blender/release/ui/buttons_physic_cloth.py	2009-05-26 05:12:27 UTC (rev 20418)
@@ -72,14 +72,15 @@
 		
 		col = layout.column_flow()
 		col.itemR(cloth, "collision_quality", slider=True)
+		col.itemR(cloth, "friction")
 		col.itemR(cloth, "min_distance", text="MinDistance")
-		col.itemR(cloth, "friction")
 		
+		
 		layout.itemR(cloth, "enable_self_collision", text="Self Collision")
 		
-		row = layout.row()
-		row.itemR(cloth, "self_collision_quality", slider=True)
-		row.itemR(cloth, "self_min_distance", text="MinDistance")
+		col = layout.column_flow()
+		col.itemR(cloth, "self_collision_quality", slider=True)
+		col.itemR(cloth, "self_min_distance", text="MinDistance")
 
 class Physic_PT_cloth_stiffness(PhysicButtonsPanel):
 	__idname__ = "Physic_PT_stiffness"





More information about the Bf-blender-cvs mailing list