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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_common.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_common.py b/release/scripts/startup/bl_ui/properties_physics_common.py
index 4db056e77a2..7f824d94431 100644
--- a/release/scripts/startup/bl_ui/properties_physics_common.py
+++ b/release/scripts/startup/bl_ui/properties_physics_common.py
@@ -186,11 +186,8 @@ def effector_weights_ui(self, context, weights):
split = layout.split()
- col = split.column()
- col.prop(weights, "gravity", slider=True)
-
- col = split.column()
- col.prop(weights, "all", slider=True)
+ split.prop(weights, "gravity", slider=True)
+ split.prop(weights, "all", slider=True)
layout.separator()