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:
Diffstat (limited to 'curve_simplify.py')
-rw-r--r--curve_simplify.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/curve_simplify.py b/curve_simplify.py
index 1518ed5f..ff42c878 100644
--- a/curve_simplify.py
+++ b/curve_simplify.py
@@ -574,20 +574,13 @@ class CURVE_OT_simplify(Operator):
self.keepShort # 7
]
try:
- global_undo = bpy.context.preferences.edit.use_global_undo
- context.preferences.edit.use_global_undo = False
-
bpy.ops.object.mode_set(mode='OBJECT')
obj = context.active_object
curve_dimension = obj.data.dimensions
main(context, obj, options, curve_dimension)
-
- context.preferences.edit.use_global_undo = global_undo
except Exception as e:
error_handlers(self, "curve.simplify", e, "Simplify Curves")
-
- context.preferences.edit.use_global_undo = global_undo
return {'CANCELLED'}
return {'FINISHED'}