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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-23 22:51:24 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-23 22:51:24 +0400
commit2254d2bdca372086cf51ddbcfd4e2f6e15e43b0d (patch)
tree0d220f6cf961693315f437f3d11fab57ce345882 /source/blender/makesdna/DNA_space_types.h
parent6871860cfe4b7b706a90e57928e7a85eb9de2aad (diff)
Fix #30323: Graph view in the Movie Clip Editor does not stay open
In fact, Graph View wasn't been supposed to be opened in Clip show editor mode. Made curves view unavailable from Clip view mode and store it's alignment in a runtime flag in SpaceClip structure.
Diffstat (limited to 'source/blender/makesdna/DNA_space_types.h')
-rw-r--r--source/blender/makesdna/DNA_space_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index ed724ae5807..bcdeff6cf1b 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -520,7 +520,9 @@ typedef struct SpaceClip {
defined when drawing and used for mouse position calculation */
/* movie postprocessing */
- int postproc_flag, pad2;
+ int postproc_flag;
+
+ int runtime_flag; /* different runtime flags */
} SpaceClip;
/* view3d Now in DNA_view3d_types.h */
@@ -912,6 +914,9 @@ enum {
#define SC_VIEW_CLIP 0
#define SC_VIEW_GRAPH 1
+/* SpaceClip->runtime_flag */
+#define SC_GRAPH_BOTTOM (1<<0)
+
/* space types, moved from DNA_screen_types.h */
/* Do NOT change order, append on end. types are hardcoded needed */
enum {