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

Was using notifier from wrong space (copy-paste error in rBd04d27b406b8).
This commit is contained in:
2021-10-14 10:54:40 +02:00
parent aa46459543
commit 583939c54d

View File

@@ -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)