From 289843119d96dd1a68ada25e4b357a5b8080f132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 28 Oct 2021 10:31:29 +0200 Subject: [PATCH] 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. --- doc/python_api/sphinx_doc_gen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 903136ea9f2..f8638b97270 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),