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>2012-03-14 04:30:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-14 04:30:20 +0400
commitf80fa544281afb22815ca083d0badd3a9979d17d (patch)
tree90e76e0c99dd410e60ea97ae32d05148f859f95e /source/blender/python/bmesh
parenta64ee8433a57d961faab1c6eee6107cdedc944b7 (diff)
documentation edit to address bmesh py api bug [#30453]
warn when addons are not found when running cmake.
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 53f32292cc3..6d4d1b20e7b 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -938,6 +938,11 @@ PyDoc_STRVAR(bpy_bm_elem_select_set_doc,
"\n"
" :arg select: Select or de-select.\n"
" :type select: boolean\n"
+"\n"
+" .. note::\n"
+"\n"
+" Currently this only flushes down, so selecting a face will select all its vertices but de-selecting a vertex "
+" won't de-select all the faces that use it, before finishing with a mesh typically flushing is still needed.\n"
);
static PyObject *bpy_bm_elem_select_set(BPy_BMElem *self, PyObject *value)
{