From 0b7c9f11f20d2f56c9955934f1c6c393ce15a133 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 18 Jun 2012 20:22:23 +0000 Subject: [PATCH] Minor UI message fixes. --- source/blender/makesrna/intern/rna_movieclip.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c index 2a12fa8b116..573e27b52c2 100644 --- a/source/blender/makesrna/intern/rna_movieclip.c +++ b/source/blender/makesrna/intern/rna_movieclip.c @@ -289,13 +289,15 @@ static void rna_def_movieclip(BlenderRNA *brna) /* 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"); }