Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Duroure <julien.duroure@gmail.com>2021-02-28 17:11:34 +0300
committerJulien Duroure <julien.duroure@gmail.com>2021-02-28 17:11:34 +0300
commit24e756c0da89bdbf88dc22163ae3b7ef4f1fbb73 (patch)
tree30d4e1fd42253d67a57f58aeb7b41a20d9ce3398 /io_scene_gltf2
parent8adb0dce852d84bfe1f9e81399681fa615b5aa8e (diff)
glTF: fix typo
Diffstat (limited to 'io_scene_gltf2')
-rwxr-xr-xio_scene_gltf2/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index e4605e31..c67597b8 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'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),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -456,7 +456,7 @@ class ExportGLTF2_Base:
except Exception:
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)
def save_settings(self, context):
@@ -912,7 +912,7 @@ class GLTF_PT_export_user_extensions(bpy.types.Panel):
sfile = context.space_data
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):
layout = self.layout