Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey>2018-08-23 18:21:55 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-08-23 18:21:55 +0300
commitc11997ccfcbf76bac8509d967d74cc608a5d15f8 (patch)
tree45ae1449dfd567b1d6ccd856bf5715ed15e10784 /release/scripts/startup/bl_ui/properties_physics_softbody.py
parent23c03bf0cc4fa85e4b5316b47beb3f8e7be2faa7 (diff)
UI: Physics panel minor adjustments
Flow panel had a wrong name when the checkmark was used in the header, fixed alignment in softbody panel & fixed wrong active state for Cloth Pin.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_softbody.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_softbody.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_softbody.py b/release/scripts/startup/bl_ui/properties_physics_softbody.py
index 761eb56ca5b..595e462e1c3 100644
--- a/release/scripts/startup/bl_ui/properties_physics_softbody.py
+++ b/release/scripts/startup/bl_ui/properties_physics_softbody.py
@@ -320,10 +320,10 @@ class PHYSICS_PT_softbody_collision(PhysicButtonsPanel, Panel):
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
- col = flow.column(align=True)
+ col = flow.column()
col.prop(softbody, "ball_size", text="Ball Size")
- col = flow.column(align=True)
+ col = flow.column()
col.prop(softbody, "ball_stiff", text="Stiffness")
col.prop(softbody, "ball_damp", text="Dampening")