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:
Philipp Oeser 2021-10-14 10:54:40 +02:00
parent aa46459543
commit 583939c54d
Notes: blender-bot 2023-02-14 09:34:18 +01:00
Referenced by issue #92200, VSE: 2D Cursor position do not update, when changing values in sidebar and is missing unit
1 changed files with 1 additions and 1 deletions

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)