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:
authorHarley Acheson <harley.acheson@gmail.com>2019-05-15 14:51:34 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-16 15:38:51 +0300
commitcfac269d258be8b1ba569a2c8ccffeb271247656 (patch)
treea396498aa465c33e783d321a7d570d5e9d42ad98 /source/blender/blenloader
parent960496f8d181def9ac5e18e430893fde89d06a05 (diff)
UI: tweak display of active, selected and edited items in the outliner
* Change circle to roundbox around active icons, so they don't overflow. * Change text color to indicate selected and active state. Differential Revision: https://developer.blender.org/D4650
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_userdef.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c
index 574f708764f..d1cb9d32212 100644
--- a/source/blender/blenloader/intern/versioning_userdef.c
+++ b/source/blender/blenloader/intern/versioning_userdef.c
@@ -134,7 +134,10 @@ static void do_versions_theme(const UserDef *userdef, bTheme *btheme)
FROM_DEFAULT_V4_UCHAR(space_clip.scrubbing_background);
}
- if (!USER_VERSION_ATLEAST(280, 65)) {
+ if (!USER_VERSION_ATLEAST(280, 67)) {
+ FROM_DEFAULT_V4_UCHAR(space_outliner.selected_object);
+ FROM_DEFAULT_V4_UCHAR(space_outliner.active_object);
+ FROM_DEFAULT_V4_UCHAR(space_outliner.edited_object);
FROM_DEFAULT_V4_UCHAR(space_outliner.row_alternate);
}