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 <campbell@blender.org>2022-06-02 13:15:53 +0300
committerCampbell Barton <campbell@blender.org>2022-06-02 13:16:20 +0300
commit48bb144feac96e6de8f267417063f4ee0a0de429 (patch)
tree9500d3a0f31890f2715f2de2d94c49070d6ce633 /source/blender/python
parentf4456a4d3c9767da76041bfa48e623cf6afa59ce (diff)
PyDoc: reference enum instead of inlining
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index f54bf3e2774..939473ceaa0 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -459,7 +459,7 @@ PyDoc_STRVAR(bpy_app_is_job_running_doc,
"\n"
" Check whether a job of the given type is running.\n"
"\n"
- " :arg job_type: job type in ['RENDER', 'RENDER_PREVIEW', OBJECT_BAKE]."
+ " :arg job_type: job type in :ref:`rna_enum_wm_job_type_items`.\n"
" :type job_type: str\n"
" :return: Whether a job of the given type is currently running.\n"
" :rtype: bool.\n");