From 58ce460cf72a7af5c43b0df8add8c21f2f3e80ab Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 14 Oct 2008 23:43:08 +0000 Subject: [PATCH] vrml exporting with images was broken. --- release/scripts/vrml97_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/vrml97_export.py b/release/scripts/vrml97_export.py index db21cabe14f..bd1a35f7c3b 100644 --- a/release/scripts/vrml97_export.py +++ b/release/scripts/vrml97_export.py @@ -639,7 +639,7 @@ class VRML2Export: # Check if any faces the material or image for face in me.faces: if (matnum == -1): - if (f.image == image): + if (face.image == image): return True elif (image == None): if (face.mat == matnum):