From 5276711094d3943480c2125d639e1b2171f9f480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Br=C3=BCckner?= Date: Tue, 20 Jul 2021 23:34:06 +0200 Subject: [PATCH] Live patch: add more ignored operators --- blender/arm/live_patch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blender/arm/live_patch.py b/blender/arm/live_patch.py index a6527e23..9079cfde 100644 --- a/blender/arm/live_patch.py +++ b/blender/arm/live_patch.py @@ -300,9 +300,11 @@ IGNORE_OPERATORS = ( 'VIEW3D_OT_select_box', 'OUTLINER_OT_item_activate', 'OBJECT_OT_editmode_toggle', + 'NODE_OT_delete', 'NODE_OT_duplicate_move', 'NODE_OT_link', 'NODE_OT_select', 'NODE_OT_translate_attach_remove_on_cancel', - 'NODE_OT_translate_attach' + 'NODE_OT_translate_attach', + 'UI_OT_button_string_clear' )