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:
authorDaniel Genrich <daniel.genrich@gmx.net>2009-09-13 17:38:23 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-09-13 17:38:23 +0400
commit716953f0c1e968f00083c6bfc0bc53e6ba6c80d5 (patch)
treebcec1a9d3f36509eddbda55b9d8e653ad3abc515 /release/ui
parent06a2ee4afed4237398b69ddf253e29a730b2f9f0 (diff)
Pointcache / Smoke:
* Disable "step" setting for smoke on GUI
Diffstat (limited to 'release/ui')
-rw-r--r--release/ui/buttons_particle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/ui/buttons_particle.py b/release/ui/buttons_particle.py
index 1d496e19121..1bbd64c9b0f 100644
--- a/release/ui/buttons_particle.py
+++ b/release/ui/buttons_particle.py
@@ -57,7 +57,8 @@ def point_cache_ui(self, cache, enabled, particles, smoke):
row = layout.row()
row.enabled = enabled
row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake")
- row.itemR(cache, "step");
+ if not smoke:
+ row.itemR(cache, "step");
if not smoke:
row = layout.row()