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
diff options
context:
space:
mode:
authorM.G. Kishalmi <lmg@kishalmi.net>2011-04-12 19:55:04 +0400
committerM.G. Kishalmi <lmg@kishalmi.net>2011-04-12 19:55:04 +0400
commitbfa332e275a0ac109847c6754e76dd8aff8d961d (patch)
tree6566785a1a38f1dabc0563e706b1b1a7075760f0
parenta1b6e077fdfd0635653bc9c9050b62f150e4e156 (diff)
changed image texture filters description from 'Area filter' to
'selected filter'.
-rw-r--r--source/blender/makesrna/intern/rna_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c
index c328e6e184e..82eb5d1d0c9 100644
--- a/source/blender/makesrna/intern/rna_texture.c
+++ b/source/blender/makesrna/intern/rna_texture.c
@@ -1016,7 +1016,7 @@ static void rna_def_texture_image(BlenderRNA *brna)
prop= RNA_def_property(srna, "use_interpolation", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "imaflag", TEX_INTERPOL);
- RNA_def_property_ui_text(prop, "Interpolation", "Interpolates pixels using Area filter");
+ RNA_def_property_ui_text(prop, "Interpolation", "Interpolates pixels using selected filter");
RNA_def_property_update(prop, 0, "rna_Texture_update");
/* XXX: I think flip_axis should be a generic Texture property, enabled for all the texture types */