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-05-19 23:35:27 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-05-20 00:54:57 +0300
commit3bced3b30686bb6154d3b340ef740522c34e7d2a (patch)
tree45228a444ee14ae5c6b62bb0bb18753584d8fb32 /source/blender/editors/include
parent5267ce8e035db1a3d4acca7d652cc9913d3c9156 (diff)
Fix flag conflict in transform operators
This added some redundant properties
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_transform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h
index 27b7511c8a2..9969acd04b7 100644
--- a/source/blender/editors/include/ED_transform.h
+++ b/source/blender/editors/include/ED_transform.h
@@ -158,7 +158,7 @@ int BIF_countTransformOrientation(const struct bContext *C);
#define P_CURSOR_EDIT (1 << 14)
#define P_CLNOR_INVALIDATE (1 << 15)
/* For properties performed when confirming the transformation. */
-#define P_POST_TRANSFORM (1 << 16)
+#define P_POST_TRANSFORM (1 << 19)
void Transform_Properties(struct wmOperatorType *ot, int flags);