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:
authorMatt Ebb <matt@mke3.net>2010-03-10 07:30:17 +0300
committerMatt Ebb <matt@mke3.net>2010-03-10 07:30:17 +0300
commit8b92e0664b68ad617af22382aa7132cc1b693be8 (patch)
treef4de1693281f3bc6dfda09c2f5eeac4bda1b12cc /release/scripts
parent081eca084db58e1cb5b43937464a1f32641a3067 (diff)
Fix [#21514] Emission Col slider ignores checkbox
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/properties_texture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index de42cdef040..3b67cd3e0c0 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -356,7 +356,7 @@ class TEXTURE_PT_influence(TextureSlotPanel):
if wide_ui:
col = split.column()
col.label(text=" ")
- factor_but(col, tex.map_alpha, "map_coloremission", "coloremission_factor", "Emission Color")
+ factor_but(col, tex.map_coloremission, "map_coloremission", "coloremission_factor", "Emission Color")
factor_but(col, tex.map_colortransmission, "map_colortransmission", "colortransmission_factor", "Transmission Color")
factor_but(col, tex.map_colorreflection, "map_colorreflection", "colorreflection_factor", "Reflection Color")