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:
Diffstat (limited to 'source/blender/editors/include/ED_screen_types.h')
-rw-r--r--source/blender/editors/include/ED_screen_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_screen_types.h b/source/blender/editors/include/ED_screen_types.h
index 29e62d51f7d..7910351f318 100644
--- a/source/blender/editors/include/ED_screen_types.h
+++ b/source/blender/editors/include/ED_screen_types.h
@@ -32,7 +32,8 @@
typedef struct AZone {
struct AZone *next, *prev;
int type;
- int flag;
+ short flag;
+ short do_draw;
int pos;
short x1, y1, x2, y2;
} AZone;
@@ -41,6 +42,8 @@ typedef struct AZone {
#define AZONE_TRI 1
#define AZONE_QUAD 2
+/* actionzone flag */
+
/* actionzone pos */
#define AZONE_S 1
#define AZONE_SW 2