[Bf-extensions-cvs] [d52854d4] master: glTF: remove ability to undo an export

Julien Duroure noreply at git.blender.org
Thu Mar 19 22:32:07 CET 2020


Commit: d52854d420bd8d2a7ce6b53619b3ba1f2308225c
Author: Julien Duroure
Date:   Thu Mar 19 22:31:30 2020 +0100
Branches: master
https://developer.blender.org/rBAd52854d420bd8d2a7ce6b53619b3ba1f2308225c

glTF: remove ability to undo an export

===================================================================

M	io_scene_gltf2/__init__.py

===================================================================

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 139911e4..393e9710 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, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
-    "version": (1, 2, 48),
+    "version": (1, 2, 49),
     'blender': (2, 82, 7),
     'location': 'File > Import-Export',
     'description': 'Import-Export as glTF 2.0',
@@ -76,7 +76,7 @@ class ExportGLTF2_Base:
         from io_scene_gltf2.io.exp import gltf2_io_draco_compression_extension
         self.is_draco_available = gltf2_io_draco_compression_extension.dll_exists()
 
-    bl_options = {'UNDO', 'PRESET'}
+    bl_options = {'PRESET'}
 
     export_format: EnumProperty(
         name='Format',



More information about the Bf-extensions-cvs mailing list