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:
authorJulian Eisel <eiseljulian@gmail.com>2016-10-15 03:07:48 +0300
committerJulian Eisel <eiseljulian@gmail.com>2016-10-15 03:08:38 +0300
commit325b21c1d58c23a92dba6f0fb7bcd2cae155cd90 (patch)
treecac98f538034a974d6c57c1b95c22cc5d6f23340 /source/blender/editors
parent4736f1900070449ea1440c3267e943fb1bc4994c (diff)
Outliner: Fix missing indentation for search-match highlight
Own mistake in ae8e84547005.
Diffstat (limited to 'source/blender/editors')
-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 840339a129d..c2cd859dcd8 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1727,7 +1727,7 @@ static void outliner_draw_highlights_recursive(
if (TSELEM_OPEN(tselem, soops)) {
outliner_draw_highlights_recursive(
ar, soops, &te->subtree, col_selection, col_highlight, col_searchmatch,
- start_x, io_start_y);
+ start_x + UI_UNIT_X, io_start_y);
}
}
}