[Bf-blender-cvs] [714e717] master: Fix T37632: Wrong tooltip for "Motion Blur" on mask node

Sergey Sharybin noreply at git.blender.org
Tue Nov 26 20:12:56 CET 2013


Commit: 714e717a0660c4961780a474218ff30a1b1aaf99
Author: Sergey Sharybin
Date:   Wed Nov 27 01:12:08 2013 +0600
http://developer.blender.org/rB714e717a0660c4961780a474218ff30a1b1aaf99

Fix T37632: Wrong tooltip for "Motion Blur" on mask node

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

M	source/blender/makesrna/intern/rna_nodetree.c

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

diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 3d291f4..ad327cc 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -5452,7 +5452,7 @@ static void def_cmp_mask(StructRNA *srna)
 
 	prop = RNA_def_property(srna, "use_motion_blur", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "custom1", CMP_NODEFLAG_MASK_MOTION_BLUR);
-	RNA_def_property_ui_text(prop, "Motion Blur", "Use feather information from the mask");
+	RNA_def_property_ui_text(prop, "Motion Blur", "Use multi-sampled motion blur of the mask");
 	RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 
 	prop = RNA_def_property(srna, "motion_blur_samples", PROP_INT, PROP_NONE);




More information about the Bf-blender-cvs mailing list