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

This commit is contained in:
Sergey Sharybin 2013-11-27 01:12:08 +06:00
parent 5102a02b38
commit 714e717a06
Notes: blender-bot 2023-02-14 11:32:18 +01:00
Referenced by issue #37632, Tooltip of "Motion Blur" on mask node shows info for a different function
1 changed files with 1 additions and 1 deletions

View File

@ -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);