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>2007-10-03 14:36:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-03 14:36:04 +0400
commitd3382b8d1f5244ae321aec42006dc469f605bacf (patch)
tree4704eec2c0e3732866ffb3db5a9d23fec222280c /source/blender/src/space.c
parentba1f2248d0429593d5623dc49d43061ac41d3053 (diff)
UV EditMode
-lasso tool now respects sticky selection setting when used with face mode -use constants for sticky value.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 6226e5fd239..66767b7cdde 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -4843,13 +4843,13 @@ static void winqreadimagespace(ScrArea *sa, void *spacedata, BWinEvent *evt)
} else {
/* normal operaton */
if(G.qual==LR_CTRLKEY) {
- G.sima->sticky = 2;
+ G.sima->sticky = SI_STICKY_VERTEX;
scrarea_do_headdraw(curarea);
} else if(G.qual==LR_SHIFTKEY) {
- G.sima->sticky = 1;
+ G.sima->sticky = SI_STICKY_DISABLE;
scrarea_do_headdraw(curarea);
} else if(G.qual==LR_ALTKEY) {
- G.sima->sticky = 0;
+ G.sima->sticky = SI_STICKY_LOC;
scrarea_do_headdraw(curarea);
} else {
G.sima->flag ^= SI_SELACTFACE;