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-03-14 01:58:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-14 01:59:03 +0300
commit3a58e97aed963b43984250e6ce40cd863b71e4b6 (patch)
tree3ff086b75e7f9b82a556e455b728f0e56191510b /source/blender/makesdna/DNA_screen_types.h
parentdaaabd076d125d7b61b00ff49fbca04bbf9c3129 (diff)
Fix T62526: Can't scroll redo panel
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 19e1f824ced..c62aed7402b 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -625,6 +625,9 @@ enum {
RGN_FLAG_TEMP_REGIONDATA = (1 << 3),
/* The region must either use its prefsizex/y or be hidden. */
RGN_FLAG_PREFSIZE_OR_HIDDEN = (1 << 4),
+ /** Size has been clamped (floating regions only). */
+ RGN_FLAG_SIZE_CLAMP_X = (1 << 5),
+ RGN_FLAG_SIZE_CLAMP_Y = (1 << 6),
};
/** #ARegion.do_draw */