From aedd49989643578abdd15b57acf1bb5b5192411a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 29 Jun 2011 08:03:46 +0000 Subject: add tooltip to address [#27798] .OBJ Import with 'Split' option enabled, skips verts with no face/edge users. --- io_scene_obj/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'io_scene_obj') diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py index 26ee0382..660a38fc 100644 --- a/io_scene_obj/__init__.py +++ b/io_scene_obj/__init__.py @@ -67,9 +67,9 @@ class ImportOBJ(bpy.types.Operator, ImportHelper): use_image_search = BoolProperty(name="Image Search", description="Search subdirs for any assosiated images (Warning, may be slow)", default=True) split_mode = EnumProperty( - name="Smoothing", - items=(('ON', "Split", "Split imported meshes"), - ('OFF', "Keep Vert Order", "Maintain vertex order"), + name="Split", + items=(('ON', "Split", "Split geometry, omits unused verts"), + ('OFF', "Keep Vert Order", "Maintain vertex order from file"), ), ) -- cgit v1.2.3