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>2019-04-18 14:49:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-18 15:02:08 +0300
commit8587679a25361b7d23fe72900bbcb307e244c169 (patch)
tree66a0b2f240aa9a190f65a9d552f62b62f9c37767 /source/blender/makesdna/DNA_screen_types.h
parent6154d07f4020c3dd8dbba1e6f5a5afd18271266d (diff)
UI: option to toggle 'Adjust Last Operation'
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 48418ee5035..5f35f7c9d6a 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -625,6 +625,9 @@ enum {
/** Size has been clamped (floating regions only). */
RGN_FLAG_SIZE_CLAMP_X = (1 << 5),
RGN_FLAG_SIZE_CLAMP_Y = (1 << 6),
+ /** When the user sets the region is hidden,
+ * needed for floating regions that may be hidden for other reasons. */
+ RGN_FLAG_HIDDEN_BY_USER = (1 << 7),
};
/** #ARegion.do_draw */