From c2c407ad6264b5bf5dc2ac4e795b3e5c632a49b8 Mon Sep 17 00:00:00 2001
From: Bastien Montagne <montagne29@wanadoo.fr>
Date: Wed, 11 Feb 2015 12:17:54 +0100
Subject: [PATCH] FBX export: Rename 'Off' smoothing option, stupid name really
 from user PoV...

---
 io_scene_fbx/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 663c1a914..ea89576aa 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -263,7 +263,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper, OrientationHelper):
             )
     mesh_smooth_type = EnumProperty(
             name="Smoothing",
-            items=(('OFF', "Off", "Don't write smoothing, export normals instead"),
+            items=(('OFF', "Normals", "Export normals instead of writing edge or face smoothing data"),
                    ('FACE', "Face", "Write face smoothing"),
                    ('EDGE', "Edge", "Write edge smoothing"),
                    ),
-- 
GitLab