From b1d016bc12ea113a0a290eed658e39bea16d350a Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Mon, 14 May 2018 15:26:29 +0200 Subject: [PATCH] MESH_OT_select_mirror: Only report when something to report Inspired by D3299. --- source/blender/editors/mesh/editmesh_select.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index f75b5cb7e01..b58a6afb6e4 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -3421,7 +3421,9 @@ static int edbm_select_mirror_exec(bContext *C, wmOperator *op) } MEM_freeN(objects); - ED_mesh_report_mirror_ex(op, tot_mirr, tot_fail, select_mode); + if (tot_mirr || tot_fail) { + ED_mesh_report_mirror_ex(op, tot_mirr, tot_fail, select_mode); + } return OPERATOR_FINISHED; }