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-10-28 13:03:53 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-10-28 13:03:53 +0300
commita2bfd28d5e2d65892369568ffe2b896cd62d5086 (patch)
tree1115bd7969d55d751136eb7c7e3a63bf5345d090 /release
parent9f388c16467d9893412cd8891f2bf2693df3db3d (diff)
Fix T71150: GPencil: Wrong Naming of Convert GP object to Meshes
The problem was the real menu text must be: `Convert to Polygon Curve` as is Object menu. A GPencil object cannot be converted to mesh in one step. The conversion must be GPencil to Curve and Curve to Mesh.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index b65bdc19a14..467fa96efc4 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2355,8 +2355,8 @@ class VIEW3D_MT_object_context_menu(Menu):
elif obj.type == 'GPENCIL':
layout.operator("gpencil.convert", text="Convert to Path").type = 'PATH'
- layout.operator("gpencil.convert", text="Convert to Bezier Curves").type = 'CURVE'
- layout.operator("gpencil.convert", text="Convert to Mesh").type = 'POLY'
+ layout.operator("gpencil.convert", text="Convert to Bezier Curve").type = 'CURVE'
+ layout.operator("gpencil.convert", text="Convert to Polygon Curve").type = 'POLY'
layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")