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>2018-12-27 04:54:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-27 04:58:48 +0300
commitff0285c4763ab3781604a71b34930eacb743572c (patch)
tree14391111464fa6cebf40723b4433dc248bc5467c /source/blender/editors/space_outliner
parent40ba73e443e993c41eca8a564b31e3f3f8cd423b (diff)
Cleanup: use unsigned char (change previous commit)
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 3ca7a510300..75ad18da3b9 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1627,7 +1627,7 @@ static void outliner_draw_tree_element(
const bool is_selected = (base != NULL) && ((base->flag & BASE_SELECTED) != 0);
if (ob == obact || is_selected) {
- char col[4] = {0, 0, 0, 0};
+ uchar col[4] = {0, 0, 0, 0};
/* outliner active ob: always white text, circle color now similar to view3d */