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.
This commit is contained in:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user