BlenderKit: disable undo pushes

These seem to crash now for an unknown reason.
This commit is contained in:
Vilém Duha 2021-01-18 12:26:15 +01:00
parent 835216ecad
commit d59052f4d5
1 changed files with 2 additions and 1 deletions

View File

@ -1803,7 +1803,8 @@ class UndoWithContext(bpy.types.Operator):
#
# C_dict = {'window': w, 'screen': w.screen}
# bpy.ops.ed.undo_push(C_dict, 'INVOKE_REGION_WIN', message=self.message)
bpy.ops.ed.undo_push('INVOKE_REGION_WIN', message=self.message)
# bpy.ops.ed.undo_push('INVOKE_REGION_WIN', message=self.message)
return {'FINISHED'}