Fix: GP brush stroke operator name and description

These were still the ones copied from the curves operator.
This commit is contained in:
Falk David
2023-06-05 18:06:00 +02:00
parent e7cc266c92
commit 8d0b10bbc7

View File

@@ -151,9 +151,9 @@ static void grease_pencil_stroke_cancel(bContext *C, wmOperator *op)
static void GREASE_PENCIL_OT_brush_stroke(wmOperatorType *ot)
{
ot->name = "Stroke Curves Sculpt";
ot->name = "Grease Pencil Draw";
ot->idname = "GREASE_PENCIL_OT_brush_stroke";
ot->description = "Sculpt curves using a brush";
ot->description = "Draw a new stroke in the active Grease Pencil object";
ot->invoke = grease_pencil_stroke_invoke;
ot->modal = grease_pencil_stroke_modal;