Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-04-23 18:57:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-23 18:57:47 +0400
commitcb91c5d7b264bb96f3772e83cccd58c0fa7319f1 (patch)
tree0c2922f534cbdac32952885c8258e2a5f6a3d7bf /source/blender/editors/mesh/editmesh_rip.c
parent4c873fec536bcb9c520b77265772281f939e27ba (diff)
rip was incorrectly giving an error when ripping a vertex from a face fan (own mistake).
Diffstat (limited to 'source/blender/editors/mesh/editmesh_rip.c')
-rw-r--r--source/blender/editors/mesh/editmesh_rip.c2
1 files changed, 1 insertions, 1 deletions
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;
}