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:
authorThomas Dinges <blender@dingto.org>2010-08-31 18:54:04 +0400
committerThomas Dinges <blender@dingto.org>2010-08-31 18:54:04 +0400
commita51f31e9a55c458fda041eddbb2dcad9e0527d22 (patch)
treed72b83f07f8bc76805e3beeb8d6a64f8e955a1cf /release
parent26da3cb99f5f90e895c599902fa77aecc826a2c3 (diff)
Fixes for RNA Renaming in Texture Properties (Volume Material)
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_texture.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index 5f44f573a25..d6d5a806a9c 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -362,8 +362,8 @@ class TEXTURE_PT_influence(TextureSlotPanel, bpy.types.Panel):
col = split.column()
factor_but(col, tex.use_map_density, "use_map_density", "density_factor", "Density")
factor_but(col, tex.use_map_emission, "use_map_emission", "emission_factor", "Emission")
- factor_but(col, tex.use_map_scatter, "use_map_scattering", "scattering_factor", "Scattering")
- factor_but(col, tex.use_map_reflect, "use_map_reflection", "reflection_factor", "Reflection")
+ factor_but(col, tex.use_map_scatter, "use_map_scatter", "scattering_factor", "Scattering")
+ factor_but(col, tex.use_map_reflect, "use_map_reflect", "reflection_factor", "Reflection")
col = split.column()
col.label(text=" ")