Commit: 59fc95bf97e70cd8daa86e9300f7e277ff2bb7b4 Author: Aaron Carlisle Date: Fri Jan 21 11:59:13 2022 -0500 Branches: master https://developer.blender.org/rB59fc95bf97e70cd8daa86e9300f7e277ff2bb7b4
UI: Clarify Active Movie Clip tooltip See T92299 =================================================================== M source/blender/makesrna/intern/rna_scene.c =================================================================== 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 */ _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
