[Bf-blender-cvs] [9c80e52] master: Make tooltip parsable by human compilers (thanks to Pablo for suggestion)

Antony Riakiotakis noreply at git.blender.org
Tue Jul 14 11:19:29 CEST 2015


Commit: 9c80e52a89ca1d514c57700e4916ee890c53c4c7
Author: Antony Riakiotakis
Date:   Tue Jul 14 11:18:27 2015 +0200
Branches: master
https://developer.blender.org/rB9c80e52a89ca1d514c57700e4916ee890c53c4c7

Make tooltip parsable by human compilers (thanks to Pablo for
suggestion)

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

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 54a0af1..c7d0164 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5693,7 +5693,7 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "use_stamp_strip_meta", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "stamp", R_STAMP_STRIPMETA);
-	RNA_def_property_ui_text(prop, "Strip Metadata", "Render the metadata of the strip for sequencer");
+	RNA_def_property_ui_text(prop, "Strip Metadata", "Use metadata from the strips in the sequencer");
 	RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
 
 	prop = RNA_def_property(srna, "stamp_font_size", PROP_INT, PROP_NONE);




More information about the Bf-blender-cvs mailing list