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:
authorRay Molenkamp <github@lazydodo.com>2019-04-23 18:15:45 +0300
committerRay Molenkamp <github@lazydodo.com>2019-04-23 18:15:45 +0300
commit8e861725dc9e9388c1c764491676c0684b1b6f8f (patch)
tree41aeb7ff4672bbacbef62ec873366029e23a3765 /source/blender/python/intern/bpy_rna.c
parent58a1eb9a00290adc68ea5391de9d188fc108a945 (diff)
Space_node: Add draw backdrop callback.
Add a callback to allow custom node editors to draw their own backdrop. Differential Revision: https://developer.blender.org/D4709 Reviewed by: JacquesLucke
Diffstat (limited to 'source/blender/python/intern/bpy_rna.c')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index ed8bbe939af..6f93e42ce19 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -8836,7 +8836,7 @@ PyDoc_STRVAR(
"(:class:`bpy.types.Region.type`)\n"
" :type region_type: str\n"
" :param draw_type: Usually `POST_PIXEL` for 2D drawing and `POST_VIEW` for 3D drawing. In "
- "some cases `PRE_VIEW` can be used.\n"
+ "some cases `PRE_VIEW` can be used. `BACKDROP` can be used for backdrops in the node editor.\n"
" :type draw_type: str\n"
" :return: Handler that can be removed later on.\n"
" :rtype: object");