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:
authorCampbell Barton <ideasman42@gmail.com>2007-06-23 16:39:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-06-23 16:39:22 +0400
commit296758ff0106eaa845fe1a1eeb14df2c6daa792d (patch)
treeb1fe6bb314439ba3234e08388463b0ef5def0bfe /source/blender/python/api2_2x/Texture.c
parent25194b5b0977a30f26d0051d2b4df6740264dd88 (diff)
PyAPI - incorrect docstrings for colorbands
Diffstat (limited to 'source/blender/python/api2_2x/Texture.c')
-rw-r--r--source/blender/python/api2_2x/Texture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/Texture.c b/source/blender/python/api2_2x/Texture.c
index 82fbb262a1b..7522d02b355 100644
--- a/source/blender/python/api2_2x/Texture.c
+++ b/source/blender/python/api2_2x/Texture.c
@@ -772,8 +772,8 @@ static PyGetSetDef BPy_Texture_getseters[] = {
(void *)TEX_NORMALMAP},
{"colorband",
(getter)Texture_getColorband, (setter)Texture_setColorband,
- "Use of image RGB values for normal mapping enabled ('ImageFlags')",
- (void *)TEX_NORMALMAP},
+ "The colorband for this texture",
+ NULL},
{NULL,NULL,NULL,NULL,NULL} /* Sentinel */
};