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 'ant_landscape/ant_functions.py')
-rw-r--r--ant_landscape/ant_functions.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/ant_landscape/ant_functions.py b/ant_landscape/ant_functions.py
index 62fe4916..075c33b0 100644
--- a/ant_landscape/ant_functions.py
+++ b/ant_landscape/ant_functions.py
@@ -141,10 +141,6 @@ class AntLandscapeRefresh(bpy.types.Operator):
def execute(self, context):
- # turn off undo
- undo = bpy.context.preferences.edit.use_global_undo
- bpy.context.preferences.edit.use_global_undo = False
-
# ant object items
obj = bpy.context.active_object
@@ -177,9 +173,6 @@ class AntLandscapeRefresh(bpy.types.Operator):
else:
pass
- # restore pre operator undo state
- context.preferences.edit.use_global_undo = undo
-
return {'FINISHED'}
# ------------------------------------------------------------
@@ -201,10 +194,6 @@ class AntLandscapeRegenerate(bpy.types.Operator):
def execute(self, context):
- # turn off undo
- undo = bpy.context.preferences.edit.use_global_undo
- bpy.context.preferences.edit.use_global_undo = False
-
view_layer = bpy.context.view_layer
# ant object items
obj = bpy.context.active_object
@@ -328,9 +317,6 @@ class AntLandscapeRegenerate(bpy.types.Operator):
new_ob.select_set(True)
view_layer.objects.active = new_ob
- # restore pre operator undo state
- context.preferences.edit.use_global_undo = undo
-
return {'FINISHED'}