From e164afe9b5f98fe1ddb2ce063e1df9e9926cacfd Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Mon, 9 Sep 2019 13:17:57 +0200 Subject: GPencil: Change Arrange Strokes menu order Before: Bring Forward, Send Backward, Bring to Front, Send to Back. After: Bring to Front, Bring Forward, Send Backward, Send to Back. --- source/blender/editors/gpencil/gpencil_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/gpencil') diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c index 4565625aefd..d72f61c64b1 100644 --- a/source/blender/editors/gpencil/gpencil_data.c +++ b/source/blender/editors/gpencil/gpencil_data.c @@ -1391,9 +1391,9 @@ static int gp_stroke_arrange_exec(bContext *C, wmOperator *op) void GPENCIL_OT_stroke_arrange(wmOperatorType *ot) { static const EnumPropertyItem slot_move[] = { + {GP_STROKE_MOVE_TOP, "TOP", 0, "Bring to Front", ""}, {GP_STROKE_MOVE_UP, "UP", 0, "Bring Forward", ""}, {GP_STROKE_MOVE_DOWN, "DOWN", 0, "Send Backward", ""}, - {GP_STROKE_MOVE_TOP, "TOP", 0, "Bring to Front", ""}, {GP_STROKE_MOVE_BOTTOM, "BOTTOM", 0, "Send to Back", ""}, {0, NULL, 0, NULL, NULL}}; -- cgit v1.2.3