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:
authorMatt Ebb <matt@mke3.net>2009-12-04 07:28:50 +0300
committerMatt Ebb <matt@mke3.net>2009-12-04 07:28:50 +0300
commita358b6386d8022f71160ccdb714e596ec63670a6 (patch)
treefa0731d959820848be3f934ee5dad7da0a13247d /release/scripts/ui
parent45955fef18c57a5d5633b88e823a9bb9d86b38e4 (diff)
* Fix for incorrect disabling after baking cloth sim
* Fix for time cursor getting 'stuck' after baking point caches
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_physics_cloth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_physics_cloth.py b/release/scripts/ui/properties_physics_cloth.py
index 0829b533c81..7123e52fb8d 100644
--- a/release/scripts/ui/properties_physics_cloth.py
+++ b/release/scripts/ui/properties_physics_cloth.py
@@ -83,9 +83,9 @@ class PHYSICS_PT_cloth(PhysicButtonsPanel):
if md:
cloth = md.settings
- layout.active = cloth_panel_enabled(md)
-
split = layout.split()
+
+ split.active = cloth_panel_enabled(md)
col = split.column()