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-08-09 16:50:39 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-08-09 16:50:39 +0400
commit07bd579fc1a62b018ca4783c8ccd3848e65e29ca (patch)
tree7b71c85de86efbfa08c7027204a5fba2bcc47de0 /release
parent5256def6f516a2e6150a22597f8df7c0a24e902d (diff)
Smoke: little fix to ui
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_physics_smoke.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/release/ui/buttons_physics_smoke.py b/release/ui/buttons_physics_smoke.py
index f2b3bc35ed8..caafb3d58f2 100644
--- a/release/ui/buttons_physics_smoke.py
+++ b/release/ui/buttons_physics_smoke.py
@@ -38,7 +38,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
split.itemL()
if md:
- layout.itemR(md, "smoke_type")
+ layout.itemR(md, "smoke_type", expand=True)
if md.smoke_type == 'TYPE_DOMAIN':
split = layout.split()
@@ -54,7 +54,6 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
sub.active = md.domain_settings.highres
sub.itemR(md.domain_settings, "amplify", text="High")
col.itemR(md.domain_settings, "highres", text="Use High Resolution")
- col.itemR(md.domain_settings, "strength")
col = split.column()
col.itemL(text="Display:")
@@ -68,6 +67,11 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
layout.itemR(md.domain_settings, "noise_type", expand=True)
split = layout.split()
+ col = split.column()
+ col.itemR(md.domain_settings, "strength")
+ sub = split.column()
+
+ split = layout.split()
col = split.column()
col.itemL(text="Flow Group:")