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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-16 20:49:31 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-17 13:44:33 +0300
commitad707115d5bcb61a2773a5b4c697d6f66c469105 (patch)
tree64202a58aa16db3dad5348bd149102cea5df9235 /source/blender/blenloader
parent4f9bcd6166db394115f8ad4341497d40973fd2ce (diff)
Preferences: add new Viewport, Animation, Navigation, Save & Load sections.
This further changes the preferences organization, to avoid grouping unrelated settings together. With more sections we can also expand more panels by default, making it possible to quickly go through sections and see the settings of each. Panels with less used settings are still collapsed by default, to keep all panel headers visible without scrolling. Differential Revision: https://developer.blender.org/D4216
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_defaults.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/versioning_defaults.c b/source/blender/blenloader/intern/versioning_defaults.c
index 6eb5bf23a6c..c2e2d19d883 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -107,6 +107,9 @@ void BLO_update_defaults_userpref_blend(void)
/* Init weight paint range. */
BKE_colorband_init(&U.coba_weight, true);
+ /* Default visible section. */
+ U.userpref = USER_SECTION_INTERFACE;
+
/* Default to left click select. */
BKE_keyconfig_pref_set_select_mouse(&U, 0, true);
}