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:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-08-25 00:37:25 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2005-08-25 00:37:25 +0400
commita51896b5916fa7c17be3941ffe6b99aa335ca14a (patch)
tree3db854338f286c16b4b09e4cffac8365b3e02c51 /source/blender/src/edit.c
parenta978c122ee76ea947d55dda50a2dc97ae3ff8457 (diff)
Move the settings in the Mesh Tools panel to the new toolsettings struct in Scene. These settings are now saved per scene.
Diffstat (limited to 'source/blender/src/edit.c')
-rw-r--r--source/blender/src/edit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/edit.c b/source/blender/src/edit.c
index ca6be579bb1..636dbf2d568 100644
--- a/source/blender/src/edit.c
+++ b/source/blender/src/edit.c
@@ -1506,7 +1506,6 @@ void snapmenu()
void mergemenu(void)
{
- extern float doublimit;
short event;
event = pupmenu("Merge %t|At Center%x1|At Cursor%x2");
@@ -1518,7 +1517,7 @@ void mergemenu(void)
else
snap_sel_to_curs(); /*Merge at Cursor*/
- notice("Removed %d Vertices", removedoublesflag(1, doublimit));
+ notice("Removed %d Vertices", removedoublesflag(1, G.scene->toolsettings->doublimit));
allqueue(REDRAWVIEW3D, 0);
countall();
BIF_undo_push("Merge"); /* push the mesh down the undo pipe */