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>2011-01-12 18:45:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-12 18:45:00 +0300
commit0384be9644b58122110aa66f5ccfc59cc0d89db4 (patch)
treebf70a2c888bdd0eb052fb2a8d46a0c41a6968036 /source/blender/editors/mesh
parent70fefd81ea3652f99f512775fbfb47a10a2e099c (diff)
bugfix [#25595] Adding Torus when in edit mode strange behavior.
also added Align View option and made local view cursor work.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/mesh_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_data.c b/source/blender/editors/mesh/mesh_data.c
index 7dd5196d32d..424d2b273e6 100644
--- a/source/blender/editors/mesh/mesh_data.c
+++ b/source/blender/editors/mesh/mesh_data.c
@@ -593,7 +593,7 @@ static void mesh_calc_edges(Mesh *mesh, int update)
*med= *med_orig; /* copy from the original */
} else {
BLI_edgehashIterator_getKey(ehi, (int*)&med->v1, (int*)&med->v2);
- med->flag = ME_EDGEDRAW|ME_EDGERENDER;
+ med->flag = ME_EDGEDRAW|ME_EDGERENDER|SELECT; /* select for newly created meshes which are selected [#25595] */
}
}
BLI_edgehashIterator_free(ehi);