patch [#24251] Add missing tooltips for image operatios

from Sergej Reich (sergof), with minor edits.
This commit is contained in:
2010-10-15 08:41:58 +00:00
parent 7a535ed3d9
commit 9f81104b29
2 changed files with 5 additions and 5 deletions

View File

@@ -235,7 +235,7 @@ def write_png(fw, mesh_source, image_width, image_height, face_iter):
class ExportUVLayout(bpy.types.Operator):
'''Export the Mesh as SVG'''
"""Export UV layout to file"""
bl_idname = "uv.export_layout"
bl_label = "Export UV Layout"
@@ -251,7 +251,7 @@ class ExportUVLayout(bpy.types.Operator):
name="Format",
description="File format to export the UV layout to",
default='PNG')
size = IntVectorProperty(size=2, default=(1024, 1024), min=8, max=32768)
size = IntVectorProperty(size=2, default=(1024, 1024), min=8, max=32768, description="Dimensions of the exported file")
@classmethod
def poll(cls, context):