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:
authorRobert Guetzkow <gitcommit@outlook.de>2020-11-17 15:50:56 +0300
committerRobert Guetzkow <gitcommit@outlook.de>2020-11-17 15:51:15 +0300
commitf3a8b264d19b2adc54baa87723907ce9442b8ecb (patch)
tree83f658950483c55ca06f17d5274ca5a9c9d530a8
parent451d4346637a6216499c290eb1a7d9c3df1711b6 (diff)
Fix T82763: Fix crash in Discombobulator on undo
Add `"UNDO"` to the `bl_options` to ensure that undo works properly with the new undo system.
-rw-r--r--add_mesh_discombobulator/mesh_discombobulator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_mesh_discombobulator/mesh_discombobulator.py b/add_mesh_discombobulator/mesh_discombobulator.py
index 4824ef4b..93f3b3c4 100644
--- a/add_mesh_discombobulator/mesh_discombobulator.py
+++ b/add_mesh_discombobulator/mesh_discombobulator.py
@@ -683,7 +683,7 @@ class VIEW3D_OT_tools_discombobulate(Operator):
bl_label = "Discombobulator"
bl_description = ("Easily add sci-fi details to a surface \n"
"Needs an existing active Mesh with Faces")
- bl_options = {"REGISTER"}
+ bl_options = {"REGISTER", "UNDO"}
executing = False