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-03-13 15:50:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-03-13 15:50:36 +0300
commit5ae20c6eaf82118ff725a5fb167e80f2c871c42b (patch)
tree581fb7e25abebabc3f61c9a8ee57d5c61a8edd53 /source/blender/python/api2_2x/Image.c
parenta8b41017f193681bc130f25f121de1cfd7a8b866 (diff)
renamed norepeatX/Y to ClampX/Y
Diffstat (limited to 'source/blender/python/api2_2x/Image.c')
-rw-r--r--source/blender/python/api2_2x/Image.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/Image.c b/source/blender/python/api2_2x/Image.c
index 7cd22afff7d..18640ce6f7c 100644
--- a/source/blender/python/api2_2x/Image.c
+++ b/source/blender/python/api2_2x/Image.c
@@ -1312,10 +1312,10 @@ static PyGetSetDef BPy_Image_getseters[] = {
"image antialiasing toggle", (void *)IMA_ANTIALI },
{"reflect", (getter)Image_getFlag, (setter)Image_setFlag,
"image reflect toggle", (void *)IMA_REFLECT },
- {"noXTile", (getter)Image_getFlagTpage, (setter)Image_setFlagTpage,
- "image reflect toggle", (void *)IMA_REFLECT },
- {"noYTile", (getter)Image_getFlagTpage, (setter)Image_setFlagTpage,
- "image reflect toggle", (void *)IMA_REFLECT },
+ {"clampX", (getter)Image_getFlagTpage, (setter)Image_setFlagTpage,
+ "disable tiling on the X axis", (void *)IMA_CLAMP_U },
+ {"clampY", (getter)Image_getFlagTpage, (setter)Image_setFlagTpage,
+ "disable tiling on the Y axis", (void *)IMA_CLAMP_V },
{NULL,NULL,NULL,NULL,NULL} /* Sentinel */
};