Usual UI messages fixes.

This commit is contained in:
Bastien Montagne 2015-07-20 22:22:31 +02:00
parent a4a3d5650d
commit 6190d75b5a
2 changed files with 2 additions and 2 deletions

@ -911,7 +911,7 @@ class CyclesObjectBlurSettings(bpy.types.PropertyGroup):
cls.use_camera_cull = BoolProperty(
name="Use Camera Cull",
description="Allow this object and it's duplicators to be culled by camera space culling",
description="Allow this object and its duplicators to be culled by camera space culling",
default=False,
)

@ -3922,7 +3922,7 @@ static void def_sh_tex_pointdensity(StructRNA *srna)
RNA_def_property_pointer_sdna(prop, NULL, "id");
RNA_def_property_struct_type(prop, "Object");
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Object", "Object to take point data from)");
RNA_def_property_ui_text(prop, "Object", "Object to take point data from");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
RNA_def_struct_sdna_from(srna, "NodeShaderTexPointDensity", "storage");