Skip to content
Snippets Groups Projects
Commit 24e756c0 authored by Julien Duroure's avatar Julien Duroure
Browse files

glTF: fix typo

parent 8adb0dce
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
bl_info = { bl_info = {
'name': 'glTF 2.0 format', 'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (1, 6, 7), "version": (1, 6, 8),
'blender': (2, 91, 0), 'blender': (2, 91, 0),
'location': 'File > Import-Export', 'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0', 'description': 'Import-Export as glTF 2.0',
...@@ -456,7 +456,7 @@ class ExportGLTF2_Base: ...@@ -456,7 +456,7 @@ class ExportGLTF2_Base:
except Exception: except Exception:
pass pass
self.has_active_extenions = len(extension_panel_unregister_functors) > 0 self.has_active_extensions = len(extension_panel_unregister_functors) > 0
return ExportHelper.invoke(self, context, event) return ExportHelper.invoke(self, context, event)
def save_settings(self, context): def save_settings(self, context):
...@@ -912,7 +912,7 @@ class GLTF_PT_export_user_extensions(bpy.types.Panel): ...@@ -912,7 +912,7 @@ class GLTF_PT_export_user_extensions(bpy.types.Panel):
sfile = context.space_data sfile = context.space_data
operator = sfile.active_operator operator = sfile.active_operator
return operator.bl_idname == "EXPORT_SCENE_OT_gltf" and operator.has_active_extenions return operator.bl_idname == "EXPORT_SCENE_OT_gltf" and operator.has_active_extensions
def draw(self, context): def draw(self, context):
layout = self.layout layout = self.layout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment