From 1b2f58adffe4784994efed00a1b2affd7210c665 Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Sat, 18 Mar 2023 05:29:04 +0100 Subject: [PATCH] VSE: Update text of text strip after each typed character Use `PROP_TEXTEDIT_UPDATE` --- source/blender/makesrna/intern/rna_sequencer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c index 3beaf9c9a45..5fd5d2c09b1 100644 --- a/source/blender/makesrna/intern/rna_sequencer.c +++ b/source/blender/makesrna/intern/rna_sequencer.c @@ -3328,6 +3328,7 @@ static void rna_def_text(StructRNA *srna) prop = RNA_def_property(srna, "text", PROP_STRING, PROP_NONE); RNA_def_property_ui_text(prop, "Text", "Text that will be displayed"); + RNA_def_property_flag(prop, PROP_TEXTEDIT_UPDATE); RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update"); prop = RNA_def_property(srna, "use_shadow", PROP_BOOLEAN, PROP_NONE);