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:
authorJulian Eisel <eiseljulian@gmail.com>2018-04-24 20:59:48 +0300
committerJulian Eisel <eiseljulian@gmail.com>2018-04-24 21:16:44 +0300
commit2cd9a0ce5c3785be3734d97446ff8470b22d6da7 (patch)
tree24339a18224f636c14ba4ba6bb8ae0aa7e913758 /source/blender/makesdna/DNA_screen_types.h
parent34d6b48c47aae25e26e7864ff66314b37669ebcc (diff)
Hide top-bar in fullscreen
Fullscreen as in the Alt+F10 fullscreen.
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 73a9beb7ab5..a127ad0e2ab 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -240,9 +240,14 @@ typedef struct ScrGlobalAreaData {
* if they are 'collapsed' or not. Value is set on area creation and not
* touched afterwards. */
short size_min, size_max;
- short pad;
+
+ short flag; /* GlobalAreaFlag */
} ScrGlobalAreaData;
+enum GlobalAreaFlag {
+ GLOBAL_AREA_IS_HIDDEN = (1 << 0),
+};
+
typedef struct ScrArea {
struct ScrArea *next, *prev;