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:
authorCampbell Barton <ideasman42@gmail.com>2013-06-16 09:35:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-16 09:35:44 +0400
commitfcc4251c07c6bc4ca5a121d224d40d3655af9a03 (patch)
treebbb12803bbf891f6b0e22e61a021c378d557fba1 /source/blender/editors/include
parent72abfbfc9514ff18e5d96e17ef42cc6777b8cf5a (diff)
resolve [#33374] Extrude and mirror editing
mirror editing option was only added to extrude so mirror editing would always be disabled. the option is now hidden to avoid confusing users.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_transform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h
index dd6c4fea6a0..423613fb780 100644
--- a/source/blender/editors/include/ED_transform.h
+++ b/source/blender/editors/include/ED_transform.h
@@ -137,6 +137,7 @@ void BIF_TransformSetUndo(const char *str);
/* to be able to add operator properties to other operators */
#define P_MIRROR (1 << 0)
+#define P_MIRROR_DUMMY (P_MIRROR | (1 << 9))
#define P_PROPORTIONAL (1 << 1)
#define P_AXIS (1 << 2)
#define P_SNAP (1 << 3)
@@ -145,6 +146,7 @@ void BIF_TransformSetUndo(const char *str);
#define P_CONSTRAINT (1 << 6)
#define P_OPTIONS (1 << 7)
#define P_CORRECT_UV (1 << 8)
+#define P_NO_DEFAULTS (1 << 10)
void Transform_Properties(struct wmOperatorType *ot, int flags);