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>2022-01-21 19:59:13 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-01-21 20:02:34 +0300
commit59fc95bf97e70cd8daa86e9300f7e277ff2bb7b4 (patch)
treeccd9622a74eb0c644e6ad7c69bf3a186610d6723
parentd034b85f3325379c40981502e44a07e5ef4c7d14 (diff)
UI: Clarify Active Movie Clip tooltip
See T92299
-rw-r--r--source/blender/makesrna/intern/rna_scene.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 5bfbd42866b..31b2e2f7023 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7911,8 +7911,10 @@ void RNA_def_scene(BlenderRNA *brna)
RNA_def_property_pointer_sdna(prop, NULL, "clip");
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_struct_type(prop, "MovieClip");
- RNA_def_property_ui_text(
- prop, "Active Movie Clip", "Active movie clip used for constraints and viewport drawing");
+ RNA_def_property_ui_text(prop,
+ "Active Movie Clip",
+ "Active Movie Clip that can be used by motion tracking constraints "
+ "or as a camera's background image");
RNA_def_property_update(prop, NC_SCENE | ND_DRAW_RENDER_VIEWPORT, NULL);
/* color management */