From 92ee3658d359e2c2f65ae439fd9178146a7eba8d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Nov 2010 12:54:44 +0000 Subject: [PATCH] UV Layout Export was missing UV Layer check. --- release/scripts/op/uv.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/release/scripts/op/uv.py b/release/scripts/op/uv.py index 597421f305a..baac3a279e9 100644 --- a/release/scripts/op/uv.py +++ b/release/scripts/op/uv.py @@ -258,7 +258,7 @@ class ExportUVLayout(bpy.types.Operator): @classmethod def poll(cls, context): obj = context.active_object - return (obj and obj.type == 'MESH') + return (obj and obj.type == 'MESH' and obj.data.uv_textures) def _space_image(self, context): space_data = context.space_data @@ -353,7 +353,6 @@ class ExportUVLayout(bpy.types.Operator): else: return False - def invoke(self, context, event): import os self.size = self._image_size(context)