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>2020-02-15 01:48:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-15 02:40:41 +0300
commit38e569cb1fdcf75645344a487b53e3d514153a2f (patch)
tree0100f5849fe1765fbdd8035b48fc660fee35b621 /source/blender/editors/space_outliner/outliner_draw.c
parent12728d43f83e48db74470ec32d252967f8d46757 (diff)
Cleanup: use UI_GetThemeColor3ubv when alpha is ignored
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-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 12704777b05..cc1222aa47b 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -2703,7 +2703,7 @@ static void outliner_draw_iconrow_number(const uiFontStyle *fstyle,
/* Now the numbers. */
uchar text_col[4];
- UI_GetThemeColor4ubv(TH_TEXT_HI, text_col);
+ UI_GetThemeColor3ubv(TH_TEXT_HI, text_col);
text_col[3] = 255;
uiFontStyle fstyle_small = *fstyle;