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:
authorNathan Craddock <nzcraddock@gmail.com>2020-08-18 06:05:55 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-08-18 06:05:55 +0300
commitd1a7d93ace163b0f31a229251ec218e0554f4d57 (patch)
tree3ff7bda1b6467e56172496ee170cd98d6bb76ccc /source/blender/editors/space_outliner/outliner_draw.c
parent30801617a662b69c98f54fa856e8d231a9bcd166 (diff)
parent63cd866f5547ec625061da7491cdf69e714b2edf (diff)
Merge branch 'soc-2020-outliner' of git.blender.org:blender into soc-2020-outliner
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 7128dee9aeb..84f39df4d22 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -2897,6 +2897,22 @@ static void outliner_draw_active_highlight(const float minx,
GPU_blend(true); /* Roundbox disables. */
}
+static void outliner_draw_active_highlight(const float minx,
+ const float miny,
+ const float maxx,
+ const float maxy,
+ const float ufac,
+ const float icon_color[4],
+ const float icon_border[4])
+{
+ UI_draw_roundbox_corner_set(UI_CNR_ALL);
+ UI_draw_roundbox_aa(true, minx, miny + ufac, maxx, maxy - ufac, UI_UNIT_Y / 4.0f, icon_color);
+
+ /* border around it */
+ UI_draw_roundbox_aa(false, minx, miny + ufac, maxx, maxy - ufac, UI_UNIT_Y / 4.0f, icon_border);
+ GPU_blend(true); /* Roundbox disables. */
+}
+
static void outliner_draw_iconrow_doit(uiBlock *block,
TreeElement *te,
const uiFontStyle *fstyle,