[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48057] trunk/blender/source/blender/ makesrna/intern/rna_movieclip.c: Minor UI message fixes.

Bastien Montagne montagne29 at wanadoo.fr
Mon Jun 18 22:22:27 CEST 2012


Revision: 48057
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48057
Author:   mont29
Date:     2012-06-18 20:22:23 +0000 (Mon, 18 Jun 2012)
Log Message:
-----------
Minor UI message fixes.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_movieclip.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_movieclip.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_movieclip.c	2012-06-18 19:59:15 UTC (rev 48056)
+++ trunk/blender/source/blender/makesrna/intern/rna_movieclip.c	2012-06-18 20:22:23 UTC (rev 48057)
@@ -289,13 +289,15 @@
 	/* start_frame */
 	prop = RNA_def_property(srna, "start_frame", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "start_frame");
-	RNA_def_property_ui_text(prop, "Start Frame", "Global scene frame number at which this movie starts playing. Affects all data associated with a clip");
+	RNA_def_property_ui_text(prop, "Start Frame", "Global scene frame number at which this movie starts playing "
+	                         "(affects all data associated with a clip)");
 	RNA_def_property_update(prop, NC_MOVIECLIP | ND_DISPLAY, "rna_MovieClip_reload_update");
 
 	/* frame_offset */
 	prop = RNA_def_property(srna, "frame_offset", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "frame_offset");
-	RNA_def_property_ui_text(prop, "Frame Offset", "Offset of footage first frame relative to it's file name. Affects only how footage is loaing, not changes data associated with a clip");
+	RNA_def_property_ui_text(prop, "Frame Offset", "Offset of footage first frame relative to it's file name "
+	                         "(affects only how footage is loading, does not change data associated with a clip)");
 	RNA_def_property_update(prop, NC_MOVIECLIP | ND_DISPLAY, "rna_MovieClip_reload_update");
 }
 




More information about the Bf-blender-cvs mailing list