use use_ prefix for boolean value.

This commit is contained in:
Campbell Barton 2011-10-02 20:09:45 +00:00
parent 74c681330f
commit e49688f021
2 changed files with 2 additions and 2 deletions

@ -1538,7 +1538,7 @@ static void node_composit_buts_map_uv(uiLayout *layout, bContext *UNUSED(C), Poi
static void node_composit_buts_id_mask(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{
uiItemR(layout, ptr, "index", 0, NULL, ICON_NONE);
uiItemR(layout, ptr, "smooth_mask", 0, NULL, ICON_NONE);
uiItemR(layout, ptr, "use_smooth_mask", 0, NULL, ICON_NONE);
}
static void node_composit_buts_file_output(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)

@ -1875,7 +1875,7 @@ static void def_cmp_id_mask(StructRNA *srna)
RNA_def_property_ui_text(prop, "Index", "Pass index number to convert to alpha");
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
prop = RNA_def_property(srna, "smooth_mask", PROP_BOOLEAN, PROP_NONE);
prop = RNA_def_property(srna, "use_smooth_mask", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "custom2", 0);
RNA_def_property_ui_text(prop, "Smooth Mask", "Apply an anti-aliasing filter to the mask");
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");