From 720cc7d08c9c753bde8f6ac25400730f5b8a05ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20DAUTRY?= Date: Mon, 4 Aug 2025 10:44:35 +0200 Subject: [PATCH] Fix #143014: make the rip operator's error message more user-friendly As discussed in #143014, the ripping operators gave error messages that left the user clueless as to why the operator fails and what to do from there. This PR aims to fix that by changing the error messages. Pull Request: https://projects.blender.org/blender/blender/pulls/143102 --- source/blender/editors/mesh/editmesh_rip.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/mesh/editmesh_rip.cc b/source/blender/editors/mesh/editmesh_rip.cc index 40722117e06..2a81f974a8f 100644 --- a/source/blender/editors/mesh/editmesh_rip.cc +++ b/source/blender/editors/mesh/editmesh_rip.cc @@ -1112,7 +1112,7 @@ static wmOperatorStatus edbm_rip_invoke(bContext *C, wmOperator *op, const wmEve return OPERATOR_CANCELLED; } if (error_face_selected) { - BKE_report(op->reports, RPT_ERROR, "Cannot rip selected faces"); + BKE_report(op->reports, RPT_ERROR, "Cannot rip faces"); return OPERATOR_CANCELLED; } if (error_disconnected_vertices) { @@ -1120,7 +1120,7 @@ static wmOperatorStatus edbm_rip_invoke(bContext *C, wmOperator *op, const wmEve return OPERATOR_CANCELLED; } if (error_rip_failed) { - BKE_report(op->reports, RPT_ERROR, "Rip failed"); + BKE_report(op->reports, RPT_ERROR, "Cannot rip non-manifold vertices or edges"); return OPERATOR_CANCELLED; } /* No errors, everything went fine. */