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:
authorDiptangshu Dey <Tha_Hobbist>2021-11-16 12:45:23 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-11-16 12:45:23 +0300
commitda14a482f281e8d330ef5210ef22335a43eb726c (patch)
treecf13d60ef5ebb9fec81c02f54a427194c03e23b7 /doc/python_api/examples/bpy.types.Operator.4.py
parent7d985d6b69703d7eb515c776dd5911443cde59d3 (diff)
Fix T90866: Python operator templates are not accessible from menus
Python Operator templates made accessible from respective menus (required to also use F3 search for quick access) Also fixed Modal Draw Operator id_name (had duplicate name from other template) Maniphest Tasks: T90866 Differential Revision: https://developer.blender.org/D13182
Diffstat (limited to 'doc/python_api/examples/bpy.types.Operator.4.py')
-rw-r--r--doc/python_api/examples/bpy.types.Operator.4.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/python_api/examples/bpy.types.Operator.4.py b/doc/python_api/examples/bpy.types.Operator.4.py
index 6b74a96eb2b..00c9cd250b1 100644
--- a/doc/python_api/examples/bpy.types.Operator.4.py
+++ b/doc/python_api/examples/bpy.types.Operator.4.py
@@ -41,8 +41,13 @@ class CustomDrawOperator(bpy.types.Operator):
col.prop(self, "my_string")
+# Only needed if you want to add into a dynamic menu
+def menu_func(self, context):
+ self.layout.operator(CustomDrawOperator.bl_idname, text="Custom Draw Operator")
+# Register and add to the object menu (required to also use F3 search "Custom Draw Operator" for quick access)
bpy.utils.register_class(CustomDrawOperator)
+bpy.types.VIEW3D_MT_object.append(menu_func)
# test call
bpy.ops.object.custom_draw('INVOKE_DEFAULT')