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:
authorGermano Cavalcante <germano.costa@ig.com.br>2020-09-23 16:54:23 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-09-23 16:54:23 +0300
commit738615cdfd988a16166b60af50df3bc664f346ca (patch)
tree53dc79a453014b114819c033a4d5559daf2dd1fa /source/blender/editors/transform/transform.c
parentba014586a0bb21792b10ea96948b1f40a135b263 (diff)
Missed in last commit
It is necessary to confirm the constrian.
Diffstat (limited to 'source/blender/editors/transform/transform.c')
-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 b3619f16b01..bc08cb91c0d 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -1208,7 +1208,7 @@ int transformEvent(TransInfo *t, const wmEvent *event)
modifiers &= ~MOD_CONSTRAINT_SELECT;
modifiers &= ~MOD_CONSTRAINT_PLANE;
if (modifiers != t->modifiers) {
- if (t->modifiers & MOD_CONSTRAINT_SELECT) {
+ if (t->modifiers & (MOD_CONSTRAINT_SELECT | MOD_CONSTRAINT_PLANE)) {
postSelectConstraint(t);
}
t->modifiers = modifiers;