From 53810a34150cde9d7dfaa31167eda2502cc7ce1c Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Tue, 20 Aug 2013 02:41:15 +0000 Subject: [PATCH] enabled presets for FBX import. --- io_scene_fbx/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py index 7fa0c6556..1bdf3efd6 100644 --- a/io_scene_fbx/__init__.py +++ b/io_scene_fbx/__init__.py @@ -58,7 +58,7 @@ class ImportFBX(bpy.types.Operator, ImportHelper): """Load a FBX geometry file""" bl_idname = "import_scene.fbx" bl_label = "Import FBX" - bl_options = {'UNDO'} + bl_options = {'UNDO', 'PRESET'} directory = StringProperty() @@ -140,7 +140,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper): """Selection to an ASCII Autodesk FBX""" bl_idname = "export_scene.fbx" bl_label = "Export FBX" - bl_options = {'PRESET'} + bl_options = {'UNDO', 'PRESET'} filename_ext = ".fbx" filter_glob = StringProperty(default="*.fbx", options={'HIDDEN'}) -- GitLab