[Bf-blender-cvs] [7f70b995841] master: Fix VSE: accidentally commented out code

Richard Antalik noreply at git.blender.org
Mon Sep 5 17:50:10 CEST 2022


Commit: 7f70b9958410a16c9288112924703598b49a5c0c
Author: Richard Antalik
Date:   Mon Sep 5 17:39:23 2022 +0200
Branches: master
https://developer.blender.org/rB7f70b9958410a16c9288112924703598b49a5c0c

Fix VSE: accidentally commented out code

`DEG_id_tag_update` was commented out in `sequencer_meta_toggle_exec()`.
Tagging does not affect functionality now, but it should be done.

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index e37d254b16f..86dc9f566e5 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1931,7 +1931,7 @@ static int sequencer_meta_toggle_exec(bContext *C, wmOperator *UNUSED(op))
     SEQ_select_active_set(scene, meta_parent);
   }
 
-  // DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS);
+  DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS);
   WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
 
   return OPERATOR_FINISHED;



More information about the Bf-blender-cvs mailing list