Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorElia Sarti <vekoon@gmail.com>2009-04-10 22:03:24 +0400
committerElia Sarti <vekoon@gmail.com>2009-04-10 22:03:24 +0400
commita55feb91de189da3f36d11e731569612dc0ab6cb (patch)
treec77a1297b72dd822fcc1f6e042841a740a165341 /source
parenta14630c9d37a3de8adc3f53ec16cb668bef75138 (diff)
2.5 / RNA
Corrected a description.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_texture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c
index f76f16d00d6..fe3478846e6 100644
--- a/source/blender/makesrna/intern/rna_texture.c
+++ b/source/blender/makesrna/intern/rna_texture.c
@@ -244,7 +244,7 @@ static void rna_def_mtex(BlenderRNA *brna)
static void rna_def_filter_size_common(StructRNA *srna)
{
- PropertyRNA * prop;
+ PropertyRNA *prop;
/* XXX: not sure about the name of this, "Min" seems a bit off */
prop= RNA_def_property(srna, "use_filter", PROP_BOOLEAN, PROP_NONE);
@@ -958,7 +958,7 @@ static void rna_def_texture_distorted_noise(BlenderRNA *brna)
prop= RNA_def_property(srna, "noise_distortion", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "noisebasis2");
RNA_def_property_enum_items(prop, prop_noise_basis_items);
- RNA_def_property_ui_text(prop, "Noise Basis", "Sets the noise basis for the distortion");
+ RNA_def_property_ui_text(prop, "Noise Distortion", "Sets the noise basis for the distortion");
prop= RNA_def_property(srna, "nabla", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.001, 0.1);