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:
authorCampbell Barton <ideasman42@gmail.com>2009-08-31 20:36:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-31 20:36:02 +0400
commit8b18843b98b300a14558f5b04c8bf995f8973da0 (patch)
tree024be417aa8a7e00e622c61cd737df5c9a04ca8a /release/ui
parentbd5bab6b86163ddcd44bababee421b9dd4bf1b1e (diff)
remove "_amount" from rna names, its not helpful.
Diffstat (limited to 'release/ui')
-rw-r--r--release/ui/buttons_physics_fluid.py4
-rw-r--r--release/ui/buttons_texture.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/release/ui/buttons_physics_fluid.py b/release/ui/buttons_physics_fluid.py
index fe15e22f0b9..6f7a97ff793 100644
--- a/release/ui/buttons_physics_fluid.py
+++ b/release/ui/buttons_physics_fluid.py
@@ -94,7 +94,7 @@ class PHYSICS_PT_fluid(PhysicButtonsPanel):
col.itemL(text="Slip Type:")
col.itemR(fluid, "slip_type", text="")
if fluid.slip_type == 'PARTIALSLIP':
- col.itemR(fluid, "partial_slip_amount", slider=True, text="Amount")
+ col.itemR(fluid, "partial_slip_factor", slider=True, text="Amount")
col.itemL(text="Impact:")
col.itemR(fluid, "impact_factor", text="Factor")
@@ -228,7 +228,7 @@ class PHYSICS_PT_domain_boundary(PhysicButtonsPanel):
sub = col.column(align=True)
sub.itemR(fluid, "slip_type", text="")
if fluid.slip_type == 'PARTIALSLIP':
- sub.itemR(fluid, "partial_slip_amount", slider=True, text="Amount")
+ sub.itemR(fluid, "partial_slip_factor", slider=True, text="Amount")
col = split.column()
col.itemL(text="Surface:")
diff --git a/release/ui/buttons_texture.py b/release/ui/buttons_texture.py
index ad0542d787a..ee3f85e15ef 100644
--- a/release/ui/buttons_texture.py
+++ b/release/ui/buttons_texture.py
@@ -609,7 +609,7 @@ class TEXTURE_PT_distortednoise(TextureTypePanel):
layout.itemR(tex, "noise_basis", text="Basis")
flow = layout.column_flow()
- flow.itemR(tex, "distortion_amount", text="Distortion")
+ flow.itemR(tex, "distortion", text="Distortion")
flow.itemR(tex, "noise_size", text="Size")
flow.itemR(tex, "nabla")