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:
Alaska
2025-08-29 20:00:05 +02:00
committed by Hans Goudey
parent 1ea8708153
commit e86bff3621
2 changed files with 3 additions and 3 deletions

View File

@@ -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')

View File

@@ -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 zier curve";
ot->exec = add_bezier::exec;
ot->poll = editable_curves_in_edit_mode_poll;