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>2011-02-07 11:13:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-07 11:13:28 +0300
commitd272b70ee09be8c949247404c9324cfffc833976 (patch)
tree28a9339ba56e77cebae3ddc61815f1437e34b465 /source/blender/python
parentad8c79405ac053bafea606ee954c4324d066d5fa (diff)
rename ID.update() --> update_tag() since this function only tags for updating and scene.update() executes the update.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_props.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_props.c b/source/blender/python/intern/bpy_props.c
index 80aeaedf940..ada8736158c 100644
--- a/source/blender/python/intern/bpy_props.c
+++ b/source/blender/python/intern/bpy_props.c
@@ -639,7 +639,7 @@ static char BPy_EnumProperty_doc[] =
" :type default: string or set\n"
" :arg options: Enumerator in ['HIDDEN', 'ANIMATABLE', 'ENUM_FLAG'].\n"
" :type options: set\n"
-" :arg items: The items that make up this enumerator.\n"
+" :arg items: sequence of enum items formatted: [(identifier, name, description), ...] where the identifier is used for python access and other values are used for the interface.\n"
" :type items: sequence of string triplets";
static PyObject *BPy_EnumProperty(PyObject *self, PyObject *args, PyObject *kw)
{