Freestyle: Revised a UI text for better understandability in the Outliner.

This commit is contained in:
Tamito Kajiyama 2014-05-05 16:40:31 +09:00
parent 38a430c027
commit f5d9f45a6f
2 changed files with 2 additions and 2 deletions

@ -678,7 +678,7 @@ class RENDERLAYER_PT_freestyle_linestyle(RenderLayerFreestyleEditorButtonsPanel,
layout.separator()
row = layout.row()
row.prop(linestyle, "use_texture", text="Use Textures")
row.prop(linestyle, "use_texture")
row.prop(linestyle, "texture_spacing", text="Spacing Along Stroke")
row = layout.row()

@ -1339,7 +1339,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_texture", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", LS_TEXTURE);
RNA_def_property_ui_text(prop, "Texture", "Enable or disable textured strokes");
RNA_def_property_ui_text(prop, "Use Textures", "Enable or disable textured strokes");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop = RNA_def_property(srna, "texture_spacing", PROP_FLOAT, PROP_FACTOR);