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.
This commit is contained in:
Robert Guetzkow 2020-11-17 13:50:56 +01:00
parent 451d434663
commit f3a8b264d1
Notes: blender-bot 2023-02-14 18:45:42 +01:00
Referenced by issue #82763, Undoing Discombombulator crashes Blender
1 changed files with 1 additions and 1 deletions

View File

@ -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