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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-03 15:11:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-03 15:11:01 +0400
commit65b46ac588a20699f22a742afab3134abe89715a (patch)
treed17565c6c6bd4b80bbd0a810e0d06202bdee0d32 /io_mesh_raw
parent0192f3383985d800a1f178ac9b844d3abe2d8158 (diff)
Fix #28446: Moving imported object to new layer deletes it
Adding UNDO flag to import operators. Made this only for trunk addons.
Diffstat (limited to 'io_mesh_raw')
-rw-r--r--io_mesh_raw/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index 76257f98..70780b36 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -50,6 +50,7 @@ class RawImporter(bpy.types.Operator):
'''Load Raw triangle mesh data'''
bl_idname = "import_mesh.raw"
bl_label = "Import RAW"
+ bl_options = {'UNDO'}
filepath = StringProperty(name="File Path", description="Filepath used for importing the RAW file", maxlen=1024, default="", subtype='FILE_PATH')
filter_glob = StringProperty(default="*.raw", options={'HIDDEN'})