Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-06-11 00:45:16 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-06-11 00:45:16 +0300
commitd581c1b3042d3b3c5c5335cdb50e4ad73412ac25 (patch)
tree744b7cacf308a80c7866fe0f4a9ad5d6de183c07 /source/blender/makesrna/intern
parente8a4bddef4ffe2dc41b88127b7153c49a4465783 (diff)
UI: Correct label naming mistake for VSE text strip box background
Seems to be a copy/paste error from rB235c309e5f86e84fb08e1ff2c5c11eb0b775c388
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c2
1 files changed, 1 insertions, 1 deletions
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);