[Bf-blender-cvs] [fce3e6646e8] master: Fix failure to set transform rotate around single

Campbell Barton noreply at git.blender.org
Sun Mar 21 04:16:24 CET 2021


Commit: fce3e6646e859d769b19b4253c753dca6c4849af
Author: Campbell Barton
Date:   Sun Mar 21 14:01:41 2021 +1100
Branches: master
https://developer.blender.org/rBfce3e6646e859d769b19b4253c753dca6c4849af

Fix failure to set transform rotate around single

Regression in 201ab7c54025afc42570ce3df3d2bb7f37fe36be

===================================================================

M	source/blender/editors/transform/transform_convert.c

===================================================================

diff --git a/source/blender/editors/transform/transform_convert.c b/source/blender/editors/transform/transform_convert.c
index e2ec857b670..2cc3025c3a5 100644
--- a/source/blender/editors/transform/transform_convert.c
+++ b/source/blender/editors/transform/transform_convert.c
@@ -82,7 +82,7 @@ void transform_around_single_fallback_ex(TransInfo *t, int data_len_all)
   if (!transform_mode_use_local_origins(t)) {
     return;
   }
-  if (t->flag | T_OVERRIDE_CENTER) {
+  if (t->flag & T_OVERRIDE_CENTER) {
     return;
   }



More information about the Bf-blender-cvs mailing list