UV Layout Export was missing UV Layer check.

This commit is contained in:
2010-11-16 12:54:44 +00:00
parent a58dcca5de
commit 92ee3658d3

View File

@@ -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)