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/makesdna
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/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 43191ec97d7..9cab63dbfeb 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -363,6 +363,12 @@ typedef struct ThemeSpace {
char match[4];
/** Outliner - selected item. */
char selected_highlight[4];
+ /** Outliner - selected object. */
+ char selected_object[4];
+ /** Outliner - active object. */
+ char active_object[4];
+ /** Outliner - edited object. */
+ char edited_object[4];
/** Outliner - row color difference. */
char row_alternate[4];
@@ -401,6 +407,8 @@ typedef struct ThemeSpace {
char metadatabg[4];
char metadatatext[4];
+
+ char _pad2[4];
} ThemeSpace;
/* set of colors for use as a custom color set for Objects/Bones wire drawing */