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:
authorMartin Poirier <theeth@yahoo.com>2010-04-13 02:42:09 +0400
committerMartin Poirier <theeth@yahoo.com>2010-04-13 02:42:09 +0400
commit584dbcc2fc4b8c837b80951babf28dc4c50017ac (patch)
tree2fd8d17c7e4b13ad44994b7c7e742e0784b2e42f /source/blender/editors/transform
parent4824e7eeeb82fcad72f222fe0d74c41c374b648e (diff)
[#21993] Edge Slide operator should disable projection snapping
Adding proper flag. If there are others like that, other people can fix them too, it's easy peasy.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 498313838df..e4061a30af1 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -4670,7 +4670,7 @@ void initEdgeSlide(TransInfo *t)
t->num.increment = t->snap[1];
- t->flag |= T_NO_CONSTRAINT;
+ t->flag |= T_NO_CONSTRAINT|T_NO_PROJECT;
}
int doEdgeSlide(TransInfo *t, float perc)