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>2021-04-24 17:24:53 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-04-24 17:46:41 +0300
commitb6542f71e12265547a0b5684335d2d27f5e48c1f (patch)
tree53ed587c9a94123e43ebb53dc5d2cc8d42d2ea70 /source/blender/editors/transform/transform_convert_mesh.c
parentf8d5d03ebc96605e74373e103e5ed8dbca8aa1b7 (diff)
Cleanup/Refactor: Unify similar flags
Diffstat (limited to 'source/blender/editors/transform/transform_convert_mesh.c')
-rw-r--r--source/blender/editors/transform/transform_convert_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_convert_mesh.c b/source/blender/editors/transform/transform_convert_mesh.c
index 74be1ffb04f..872f3e1385a 100644
--- a/source/blender/editors/transform/transform_convert_mesh.c
+++ b/source/blender/editors/transform/transform_convert_mesh.c
@@ -1624,7 +1624,7 @@ void recalcData_mesh(TransInfo *t)
if (!is_canceling) {
applyProject(t);
- bool do_mirror = !(t->flag & T_NO_MIRROR) && !(t->options & CTX_NO_MIRROR);
+ bool do_mirror = !(t->flag & T_NO_MIRROR);
FOREACH_TRANS_DATA_CONTAINER (t, tc) {
/* Apply clipping after so we never project past the clip plane T25423. */
transform_convert_clip_mirror_modifier_apply(tc);