From 85b667716aab76e08a5387e03197c7a068ba7a58 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 6 Mar 2019 10:51:11 +1100 Subject: Cleanup: style --- source/blender/editors/gpencil/gpencil_ops.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'source/blender/editors/gpencil/gpencil_ops.c') diff --git a/source/blender/editors/gpencil/gpencil_ops.c b/source/blender/editors/gpencil/gpencil_ops.c index 6b165f1ac8e..c01da39bcd8 100644 --- a/source/blender/editors/gpencil/gpencil_ops.c +++ b/source/blender/editors/gpencil/gpencil_ops.c @@ -355,9 +355,10 @@ void ED_operatormacros_gpencil(void) wmOperatorTypeMacro *otmacro; /* Duplicate + Move = Interactively place newly duplicated strokes */ - ot = WM_operatortype_append_macro("GPENCIL_OT_duplicate_move", "Duplicate Strokes", - "Make copies of the selected Grease Pencil strokes and move them", - OPTYPE_UNDO | OPTYPE_REGISTER); + ot = WM_operatortype_append_macro( + "GPENCIL_OT_duplicate_move", "Duplicate Strokes", + "Make copies of the selected Grease Pencil strokes and move them", + OPTYPE_UNDO | OPTYPE_REGISTER); WM_operatortype_macro_define(ot, "GPENCIL_OT_duplicate"); otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_boolean_set(otmacro->ptr, "gpencil_strokes", true); @@ -365,9 +366,10 @@ void ED_operatormacros_gpencil(void) RNA_boolean_set(otmacro->ptr, "mirror", false); /* Extrude + Move = Interactively add new points */ - ot = WM_operatortype_append_macro("GPENCIL_OT_extrude_move", "Extrude Stroke Points", - "Extrude selected points and move them", - OPTYPE_UNDO | OPTYPE_REGISTER); + ot = WM_operatortype_append_macro( + "GPENCIL_OT_extrude_move", "Extrude Stroke Points", + "Extrude selected points and move them", + OPTYPE_UNDO | OPTYPE_REGISTER); WM_operatortype_macro_define(ot, "GPENCIL_OT_extrude"); otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate"); RNA_boolean_set(otmacro->ptr, "gpencil_strokes", true); -- cgit v1.2.3