From cb91c5d7b264bb96f3772e83cccd58c0fa7319f1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 23 Apr 2012 14:57:47 +0000 Subject: rip was incorrectly giving an error when ripping a vertex from a face fan (own mistake). --- source/blender/editors/mesh/editmesh_rip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/mesh/editmesh_rip.c') diff --git a/source/blender/editors/mesh/editmesh_rip.c b/source/blender/editors/mesh/editmesh_rip.c index 42857bd7270..84e9b0658ed 100644 --- a/source/blender/editors/mesh/editmesh_rip.c +++ b/source/blender/editors/mesh/editmesh_rip.c @@ -726,7 +726,7 @@ static int edbm_rip_invoke(bContext *C, wmOperator *op, wmEvent *event) EDBM_selectmode_flush(em); - if (totedge_orig == bm->totedge) { + if ((singlesel == FALSE) && (totedge_orig == bm->totedge)) { BKE_report(op->reports, RPT_ERROR, "No edges could be ripped"); return OPERATOR_CANCELLED; } -- cgit v1.2.3