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:
-rw-r--r--source/blender/src/space.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 52a646a2c64..e6541251a73 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2051,12 +2051,8 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
else if (G.qual == (LR_CTRLKEY|LR_SHIFTKEY)) {
if (G.obedit && G.obedit->type==OB_MESH &&
!multires_level1_test()) {
- if (G.scene->selectmode & SCE_SELECT_VERTEX) {
- initTransform(TFM_BWEIGHT, CTX_NONE);
- }
- else {
- initTransform(TFM_BWEIGHT, CTX_EDGE);
- }
+
+ initTransform(TFM_BWEIGHT, CTX_EDGE);
Transform();
}
}