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>2018-06-03 11:59:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-03 12:12:50 +0300
commit6221180963c39f9f3f95982070ff6f381ab7e0b2 (patch)
treeecd853c013b5f2038ff9863d2c471a1b4244c0e7 /source/blender/makesdna/DNA_action_types.h
parent815b1f24fa298784d9204b9248bc69ceb2b3d762 (diff)
Cleanup: remove blockscale & handler
Replace with link_flag, currently unused, needed for dynamic space types which is planned.
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 6913f3382e1..0e13aff4d44 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -652,10 +652,10 @@ typedef enum eDopeSheet_Flag {
typedef struct SpaceAction {
struct SpaceLink *next, *prev;
ListBase regionbase; /* storage of regions for inactive spaces */
- int spacetype;
- float blockscale;
-
- short blockhandler[8];
+ char spacetype;
+ char link_flag;
+ char _pad0[6];
+ /* End 'SpaceLink' header. */
View2D v2d DNA_DEPRECATED; /* copied to region */