From a87593e62ab154eea4a22155c6233d7dd9ff1c8f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 5 Jul 2021 18:53:19 +1000 Subject: Fix early return in reverse-color where continue was intended --- source/blender/editors/mesh/editmesh_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 0917d677691..328658eb7a2 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -3154,7 +3154,7 @@ static int edbm_reverse_colors_exec(bContext *C, wmOperator *op) /* finish the operator */ if (!EDBM_op_finish(em, &bmop, op, true)) { - return OPERATOR_CANCELLED; + continue; } EDBM_update(obedit->data, -- cgit v1.2.3