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_scene.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_scene.py21
1 files changed, 10 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/properties_scene.py b/release/scripts/startup/bl_ui/properties_scene.py
index afd9632b207..e0f4fd1f75b 100644
--- a/release/scripts/startup/bl_ui/properties_scene.py
+++ b/release/scripts/startup/bl_ui/properties_scene.py
@@ -272,25 +272,24 @@ class SCENE_PT_rigid_body_world(SceneButtonsPanel, Panel):
if rbw is None:
layout.operator("rigidbody.world_add")
else:
- col = layout.column()
- col.operator("rigidbody.world_remove")
+ layout.operator("rigidbody.world_remove")
col = layout.column()
col.active = rbw.enabled
- colsub = col.column()
- colsub.prop(rbw, "group")
- colsub.prop(rbw, "constraints")
+ col = col.column()
+ col.prop(rbw, "group")
+ col.prop(rbw, "constraints")
split = col.split()
- colsub = split.column()
- colsub.prop(rbw, "time_scale", text="Speed")
- colsub.prop(rbw, "use_split_impulse")
+ col = split.column()
+ col.prop(rbw, "time_scale", text="Speed")
+ col.prop(rbw, "use_split_impulse")
- colsub = split.column()
- colsub.prop(rbw, "steps_per_second", text="Steps Per Second")
- colsub.prop(rbw, "num_solver_iterations", text="Solver Iterations")
+ col = split.column()
+ col.prop(rbw, "steps_per_second", text="Steps Per Second")
+ col.prop(rbw, "num_solver_iterations", text="Solver Iterations")
class SCENE_PT_rigid_body_cache(SceneButtonsPanel, Panel):