From 4adde62f6097da9ca8dbec3d7e970d30e1f48cf5 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 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),