Fix: UI: Correct spelling of Bézier in Curves add menu
Pull Request: https://projects.blender.org/blender/blender/pulls/145338
This commit is contained in:
@@ -5875,7 +5875,7 @@ class VIEW3D_MT_edit_curves_add(Menu):
|
||||
def draw(self, _context):
|
||||
layout = self.layout
|
||||
|
||||
layout.operator("curves.add_bezier", text="Bezier", icon='CURVE_BEZCURVE')
|
||||
layout.operator("curves.add_bezier", text="Bézier", icon='CURVE_BEZCURVE')
|
||||
layout.operator("curves.add_circle", text="Circle", icon='CURVE_BEZCIRCLE')
|
||||
|
||||
|
||||
|
||||
@@ -1716,9 +1716,9 @@ static wmOperatorStatus exec(bContext *C, wmOperator *op)
|
||||
|
||||
static void CURVES_OT_add_bezier(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Add Bezier";
|
||||
ot->name = "Add Bézier";
|
||||
ot->idname = __func__;
|
||||
ot->description = "Add new bezier curve";
|
||||
ot->description = "Add new Bézier curve";
|
||||
|
||||
ot->exec = add_bezier::exec;
|
||||
ot->poll = editable_curves_in_edit_mode_poll;
|
||||
|
||||
Reference in New Issue
Block a user