rip was incorrectly giving an error when ripping a vertex from a face fan (own mistake).

This commit is contained in:
Campbell Barton
2012-04-23 14:57:47 +00:00
parent 4c873fec53
commit cb91c5d7b2

View File

@@ -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;
}