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:
authorAntonio Vazquez <blendergit@gmail.com>2019-09-01 23:30:47 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-09-01 23:30:47 +0300
commit35bc4c2cf483dc96768fc56fb288b2a7f9deb2ff (patch)
tree18897952a4d79f210d64918e27c1b0e4ced44a5f
parent8ca9626985f7377272b4e4a9b5000f8a6599b5a0 (diff)
GPencil: Add Convert to Grease Pencil to context Object menu
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index c8bd2a14fe2..fc27b3c6cc9 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2333,6 +2333,7 @@ class VIEW3D_MT_object_context_menu(Menu):
layout.separator()
layout.operator("object.convert", text="Convert to Mesh").target = 'MESH'
+ layout.operator("object.convert", text="Convert to Grease Pencil").target = 'GPENCIL'
layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")
layout.separator()