Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-21 09:27:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-21 09:27:49 +0400
commit2e2d7c7a52b818329189ac63188212b2d8108aeb (patch)
treee8db151d577761cb10a37aa5a4f489c77132a1b1 /space_view3d_materials_utils.py
parent902440537e155a5aaad92bb9e753cb2a33eca47f (diff)
update for changes in rna
Diffstat (limited to 'space_view3d_materials_utils.py')
-rw-r--r--space_view3d_materials_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index 683d2b50..68e748d3 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -213,9 +213,9 @@ def mat_to_texface():
#check that material had an image!
if images[f.material_index] != None:
uvtex[f.index].image = images[f.material_index]
- uvtex[f.index].use_texture = True
+ uvtex[f.index].use_image = True
else:
- uvtex[f.index].use_texture = False
+ uvtex[f.index].use_image = False
me.update()