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:
authorCampbell Barton <campbell@blender.org>2022-05-03 02:32:28 +0300
committerCampbell Barton <campbell@blender.org>2022-05-03 02:32:28 +0300
commit79d4740edabbe0a7cd20b708a4c67e69958396b4 (patch)
tree33116d0f316270f43d572c8a77a3dc73e0f7e1c5 /doc
parent309b6319a045ea95c7602475a4a5f5a6e4afdd07 (diff)
Cleanup: use context.temp_override
Remove use of deprecated operator context passing. Also minor clarification in the context.temp_override docs.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.Context.temp_override.1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.types.Context.temp_override.1.py b/doc/python_api/examples/bpy.types.Context.temp_override.1.py
index 68f0eef93c3..6213db30e00 100644
--- a/doc/python_api/examples/bpy.types.Context.temp_override.1.py
+++ b/doc/python_api/examples/bpy.types.Context.temp_override.1.py
@@ -10,7 +10,7 @@ Notes:
- Temporary context overrides may be nested, when this is done, members will be added to the existing overrides.
-- Context members are restored outside the scope of the context.
+- Context members are restored outside the scope of the context-manager.
The only exception to this is when the data is no longer available.
In the event windowing data was removed (for example), the state of the context is left as-is.