[Bf-blender-cvs] [70d69aa] master: Code cleanup, make pie-menus code be closer to master

Antony Riakiotakis noreply at git.blender.org
Wed Jul 30 15:51:20 CEST 2014


Commit: 70d69aa2aead70ed8945b87925c8600e08673900
Author: Antony Riakiotakis
Date:   Wed Jul 30 15:50:37 2014 +0200
Branches: master
https://developer.blender.org/rB70d69aa2aead70ed8945b87925c8600e08673900

Code cleanup, make pie-menus code be closer to master

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

M	source/blender/makesdna/DNA_screen_types.h

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

diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 38d3c27..556923c 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -271,12 +271,12 @@ typedef struct ARegion {
 // #define WIN_EQUAL		3  // UNUSED
 
 /* area->flag */
-#define HEADER_NO_PULLDOWN		1
-#define AREA_FLAG_DRAWJOINTO	2
-#define AREA_FLAG_DRAWJOINFROM	4
-#define AREA_TEMP_INFO			8
-#define AREA_FLAG_DRAWSPLIT_H	16
-#define AREA_FLAG_DRAWSPLIT_V	32
+#define HEADER_NO_PULLDOWN      (1 << 0)
+#define AREA_FLAG_DRAWJOINTO    (1 << 1)
+#define AREA_FLAG_DRAWJOINFROM  (1 << 2)
+#define AREA_TEMP_INFO          (1 << 3)
+#define AREA_FLAG_DRAWSPLIT_H   (1 << 4)
+#define AREA_FLAG_DRAWSPLIT_V   (1 << 5)
 
 #define EDGEWIDTH	1
 #define AREAGRID	4




More information about the Bf-blender-cvs mailing list