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>2010-08-22 16:59:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-22 16:59:13 +0400
commit96429a4792cb2b30c8e96ab6cedcd3f6c884fc38 (patch)
tree23267da6056991ac5ba24a985486c1a2d276b153 /release
parent2462d4976ba65a8639445b19e8ac13df7ef1a9fa (diff)
fix for error rna naming
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_texture.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index 474f4a75df7..220d5555964 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -384,12 +384,12 @@ class TEXTURE_PT_influence(TextureSlotPanel, bpy.types.Panel):
split = layout.split()
col = split.column()
- factor_but(col, tex.use_map_blend, "map_blend", "blend_factor", "Blend")
- factor_but(col, tex.use_map_horizon, "map_horizon", "horizon_factor", "Horizon")
+ factor_but(col, tex.use_map_blend, "use_map_blend", "blend_factor", "Blend")
+ factor_but(col, tex.use_map_horizon, "use_map_horizon", "horizon_factor", "Horizon")
col = split.column()
- factor_but(col, tex.use_map_zenith_up, "map_zenith_up", "zenith_up_factor", "Zenith Up")
- factor_but(col, tex.use_map_zenith_down, "map_zenith_down", "zenith_down_factor", "Zenith Down")
+ factor_but(col, tex.use_map_zenith_up, "use_map_zenith_up", "zenith_up_factor", "Zenith Up")
+ factor_but(col, tex.use_map_zenith_down, "use_map_zenith_down", "zenith_down_factor", "Zenith Down")
layout.separator()