[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31516] trunk/blender/release/scripts/ui/ properties_texture.py: fix for error rna naming

Campbell Barton ideasman42 at gmail.com
Sun Aug 22 14:59:14 CEST 2010


Revision: 31516
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31516
Author:   campbellbarton
Date:     2010-08-22 14:59:13 +0200 (Sun, 22 Aug 2010)

Log Message:
-----------
fix for error rna naming

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_texture.py

Modified: trunk/blender/release/scripts/ui/properties_texture.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_texture.py	2010-08-22 10:52:30 UTC (rev 31515)
+++ trunk/blender/release/scripts/ui/properties_texture.py	2010-08-22 12:59:13 UTC (rev 31516)
@@ -384,12 +384,12 @@
             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()
 





More information about the Bf-blender-cvs mailing list