[Bf-blender-cvs] [583939c54de] master: Fix T92200: VSE: 2D Cursor position missing viewport update

Philipp Oeser noreply at git.blender.org
Thu Oct 14 11:10:07 CEST 2021


Commit: 583939c54deadbb224f77412c09b58a86e66882c
Author: Philipp Oeser
Date:   Thu Oct 14 10:54:40 2021 +0200
Branches: master
https://developer.blender.org/rB583939c54deadbb224f77412c09b58a86e66882c

Fix T92200: VSE: 2D Cursor position missing viewport update

Was using notifier from wrong space (copy-paste error in rBd04d27b406b8).

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 8a2f48ba991..8f9d4addd30 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -5717,7 +5717,7 @@ static void rna_def_space_sequencer(BlenderRNA *brna)
   RNA_def_property_float_sdna(prop, NULL, "cursor");
   RNA_def_property_array(prop, 2);
   RNA_def_property_ui_text(prop, "2D Cursor Location", "2D cursor location for this view");
-  RNA_def_property_update(prop, NC_SPACE | ND_SPACE_CLIP, NULL);
+  RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL);
 }
 
 static void rna_def_space_text(BlenderRNA *brna)



More information about the Bf-blender-cvs mailing list