From ee208ece183f35ac226db8fe441f109f83cf4ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Br=C3=BCckner?= Date: Sun, 25 Jul 2021 20:20:43 +0200 Subject: [PATCH] Live patch: ignore two more operators --- blender/arm/live_patch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blender/arm/live_patch.py b/blender/arm/live_patch.py index 9c4ce769..b2bf81a8 100644 --- a/blender/arm/live_patch.py +++ b/blender/arm/live_patch.py @@ -362,6 +362,7 @@ IGNORE_OPERATORS = ( 'NODE_OT_duplicate_move', 'NODE_OT_hide_toggle', 'NODE_OT_link', + 'NODE_OT_move_detach_links', 'NODE_OT_select', 'NODE_OT_translate_attach', 'NODE_OT_translate_attach_remove_on_cancel', @@ -369,6 +370,7 @@ IGNORE_OPERATORS = ( 'OBJECT_OT_editmode_toggle', 'OUTLINER_OT_item_activate', 'UI_OT_button_string_clear', + 'UI_OT_eyedropper_id', 'VIEW3D_OT_select', 'VIEW3D_OT_select_box', )