From 96429a4792cb2b30c8e96ab6cedcd3f6c884fc38 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 22 Aug 2010 12:59:13 +0000 Subject: [PATCH] fix for error rna naming --- release/scripts/ui/properties_texture.py | 8 ++++---- 1 file 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()