diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py index 15ad95195f25f14adc2a73e6abebe386ecacf64c..6e97ce2ea06028ff2a8a7f9327d42866f94f98b0 100644 --- a/io_scene_x3d/__init__.py +++ b/io_scene_x3d/__init__.py @@ -57,6 +57,7 @@ class ImportX3D(bpy.types.Operator, ImportHelper): '''Import and X3D or VRML file''' bl_idname = "import_scene.x3d" bl_label = "Import X3D/VRML" + bl_options = {'PRESET'} filename_ext = ".x3d" filter_glob = StringProperty(default="*.x3d;*.wrl", options={'HIDDEN'}) @@ -104,6 +105,7 @@ class ExportX3D(bpy.types.Operator, ExportHelper): '''Export selection to Extensible 3D file (.x3d)''' bl_idname = "export_scene.x3d" bl_label = 'Export X3D' + bl_options = {'PRESET'} filename_ext = ".x3d" filter_glob = StringProperty(default="*.x3d", options={'HIDDEN'})