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 <ideasman42@gmail.com>2011-03-18 01:49:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-18 01:49:46 +0300
commit35dae4f0b59809d45ec451d78e5561e27e4e8062 (patch)
tree9ed04c5a314ba3af5e25c5ed7c06e55280e9c5b6 /doc/python_api/examples/bpy.types.Operator.2.py
parenta84e43c48b149593c4abfed8ad1b507f20526cc9 (diff)
add sphinx api reference note that menu's layout.operator_context defaults to EXEC_REGION_WIN rather then INVOKE_DEFAULT.
Diffstat (limited to 'doc/python_api/examples/bpy.types.Operator.2.py')
-rw-r--r--doc/python_api/examples/bpy.types.Operator.2.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/python_api/examples/bpy.types.Operator.2.py b/doc/python_api/examples/bpy.types.Operator.2.py
index 54bd481b339..39ff5caae8a 100644
--- a/doc/python_api/examples/bpy.types.Operator.2.py
+++ b/doc/python_api/examples/bpy.types.Operator.2.py
@@ -39,6 +39,7 @@ class ExportSomeData(bpy.types.Operator):
# Only needed if you want to add into a dynamic menu
def menu_func(self, context):
+ self.layout.operator_context = 'INVOKE_DEFAULT'
self.layout.operator(ExportSomeData.bl_idname, text="Text Export Operator")
# Register and add to the file selector