[Bf-blender-cvs] [3bced3b3068] master: Fix flag conflict in transform operators

Germano Cavalcante noreply at git.blender.org
Tue May 19 23:55:38 CEST 2020


Commit: 3bced3b30686bb6154d3b340ef740522c34e7d2a
Author: Germano Cavalcante
Date:   Tue May 19 17:35:27 2020 -0300
Branches: master
https://developer.blender.org/rB3bced3b30686bb6154d3b340ef740522c34e7d2a

Fix flag conflict in transform operators

This added some redundant properties

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

M	source/blender/editors/include/ED_transform.h

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

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);



More information about the Bf-blender-cvs mailing list