From 38e569cb1fdcf75645344a487b53e3d514153a2f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 15 Feb 2020 09:48:30 +1100 Subject: Cleanup: use UI_GetThemeColor3ubv when alpha is ignored --- source/blender/editors/space_outliner/outliner_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_outliner/outliner_draw.c') 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; -- cgit v1.2.3