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-02-26 05:24:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-02-26 05:24:04 +0300
commita3320f209c8913751efc5c90ab62bcde32bae55f (patch)
tree211bcf6d8c84323d4fd2f1f2e43664ff665ee516 /source/blender/python/api2_2x/Image.c
parent2ffe25aa79a8a07ab02f62fa2edca4bc763cfb91 (diff)
console.py
* improved autocompleation * faster dictionary usage Types.c * type(scene.getTimeLine()) # old bug, will crash blender
Diffstat (limited to 'source/blender/python/api2_2x/Image.c')
-rw-r--r--source/blender/python/api2_2x/Image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/Image.c b/source/blender/python/api2_2x/Image.c
index 403abf4059d..ed6f43067bb 100644
--- a/source/blender/python/api2_2x/Image.c
+++ b/source/blender/python/api2_2x/Image.c
@@ -1247,11 +1247,11 @@ static PyGetSetDef BPy_Image_getseters[] = {
{"fields", (getter)Image_getFlag, (setter)Image_setFlag,
"image fields toggle", (void *)IMA_FIELDS },
{"fields_odd", (getter)Image_getFlag, (setter)Image_setFlag,
- "image fields toggle", (void *)IMA_STD_FIELD },
+ "image odd fields toggle", (void *)IMA_STD_FIELD },
{"antialias", (getter)Image_getFlag, (setter)Image_setFlag,
- "image fields toggle", (void *)IMA_ANTIALI },
+ "image antialiasing toggle", (void *)IMA_ANTIALI },
{"reflect", (getter)Image_getFlag, (setter)Image_setFlag,
- "image fields toggle", (void *)IMA_REFLECT },
+ "image reflect toggle", (void *)IMA_REFLECT },
{NULL,NULL,NULL,NULL,NULL} /* Sentinel */
};