[Bf-blender-cvs] [d581c1b3042] master: UI: Correct label naming mistake for VSE text strip box background

Aaron Carlisle noreply at git.blender.org
Thu Jun 10 23:45:52 CEST 2021


Commit: d581c1b3042d3b3c5c5335cdb50e4ad73412ac25
Author: Aaron Carlisle
Date:   Thu Jun 10 17:45:16 2021 -0400
Branches: master
https://developer.blender.org/rBd581c1b3042d3b3c5c5335cdb50e4ad73412ac25

UI: Correct label naming mistake for VSE text strip box background

Seems to be a copy/paste error from 
rB235c309e5f86e84fb08e1ff2c5c11eb0b775c388

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

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

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

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 9851d65ece3..2652003cb1c 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2922,7 +2922,7 @@ static void rna_def_text(StructRNA *srna)
 
   prop = RNA_def_property(srna, "use_box", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_TEXT_BOX);
-  RNA_def_property_ui_text(prop, "Shadow", "Display colored box behind text");
+  RNA_def_property_ui_text(prop, "Box", "Display colored box behind text");
   RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update");
 
   prop = RNA_def_property(srna, "use_bold", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list