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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-20 20:04:10 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-20 20:04:10 +0300
commit26b0261a53456d30d9aabcd9368afaeb95cf982b (patch)
tree9ec8d8d9231a1d562a630278d24ae70073470793 /source/blender/src/editobject.c
parent0f2b2e3c60173e85e137df71392d867576e65ac1 (diff)
Particle Edit Mode
================== - Added a Remove Doubles tool, to remove two particles with the same root position.
Diffstat (limited to 'source/blender/src/editobject.c')
-rw-r--r--source/blender/src/editobject.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index bb3beb329f1..c563548759c 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -2296,9 +2296,9 @@ void special_editmenu(void)
return;
if(G.scene->selectmode & SCE_SELECT_POINT)
- nr= pupmenu("Specials%t|Rekey%x1|Subdivide%x2|Select First%x3|Select Last%x4");
+ nr= pupmenu("Specials%t|Rekey%x1|Subdivide%x2|Select First%x3|Select Last%x4|Remove Doubles%x5");
else
- nr= pupmenu("Specials%t|Rekey%x1");
+ nr= pupmenu("Specials%t|Rekey%x1|Remove Doubles%x5");
switch(nr) {
case 1:
@@ -2315,6 +2315,9 @@ void special_editmenu(void)
case 4:
PE_select_tip();
break;
+ case 5:
+ PE_remove_doubles();
+ break;
}
DAG_object_flush_update(G.scene, G.obedit, OB_RECALC_DATA);