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
path: root/doc
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2021-10-28 11:31:29 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-10-28 11:32:13 +0300
commit4adde62f6097da9ca8dbec3d7e970d30e1f48cf5 (patch)
tree217424686900ba6d480839192f4b2d62ee214e04 /doc
parent2501d002683d5bbe9ea82c0c3f58e47cf97d3b4b (diff)
Python doc generator: add missing `selected_ids` context key
Add the context key I introduced in rB03c0581c6ed to the Python API docs generator. No functional changes to Blender.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 3fdb4ca0bc3..04efe49f778 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1110,6 +1110,7 @@ context_type_map = {
"selected_editable_sequences": ("Sequence", True),
"selected_ids": ("ID", True),
"selected_files": ("FileSelectEntry", True),
+ "selected_ids": ("ID", True),
"selected_nla_strips": ("NlaStrip", True),
"selected_movieclip_tracks": ("MovieTrackingTrack", True),
"selected_nodes": ("Node", True),