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-02-06 13:15:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 13:20:15 +0300
commitafd4bf869498782a56304cd127192161a0a40996 (patch)
treec8469845d8d20636015e5c2ccf24fffc58b1891d /source/blender/makesdna/DNA_userdef_types.h
parent18e67813cd1b315f77fb194476b357a0e377e6d5 (diff)
Fix T61136: Header alignment preference has no effect
Users expect this to apply to existing files, adjust this to apply on load, defaults to off.
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 23bd962760b..228812cd243 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -872,7 +872,8 @@ typedef enum eUserpref_UI_Flag {
USER_PLAINMENUS = (1 << 5),
USER_LOCK_CURSOR_ADJUST = (1 << 6),
USER_HEADER_BOTTOM = (1 << 7),
- USER_UIFLAG_DEPRECATED_8 = (1 << 8), /* cleared */
+ /** Otherwise use header alignment from the file. */
+ USER_HEADER_FROM_PREF = (1 << 8),
USER_MENUOPENAUTO = (1 << 9),
USER_DEPTH_CURSOR = (1 << 10),
USER_AUTOPERSP = (1 << 11),