Fix Proportional Edit Projected 2D method skiped center calculation

rBa520e7c85c83 defined T_OVERRIDE_CENTER(1 << 25)
which was already in use T_PROP_PROJECTED(1 << 25)
thus skipping center calculation

Fixes T58882, T59518

Reviewers: campbellbarton, brecht

Maniphest Tasks: T58882, T59518

Differential Revision: https://developer.blender.org/D4100
This commit is contained in:
Philipp Oeser 2018-12-19 11:46:42 +01:00
parent 6af6ef9771
commit 684898cfbf
Notes: blender-bot 2023-02-14 04:39:19 +01:00
Referenced by issue #59518, Proportional edit Influence circle always draw in origin (2.79)
Referenced by issue #58882, Proportional Edit Influence Circle is Always draw in Origin in Projected 2D Mode
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ typedef struct TransInfo {
#define T_PROP_EDIT (1 << 11)
#define T_PROP_CONNECTED (1 << 12)
#define T_PROP_PROJECTED (1 << 25)
#define T_PROP_PROJECTED (1 << 13)
#define T_PROP_EDIT_ALL (T_PROP_EDIT | T_PROP_CONNECTED | T_PROP_PROJECTED)
#define T_V3D_ALIGN (1 << 14)