[Bf-blender-cvs] [325b21c] blender2.8: Outliner: Fix missing indentation for search-match highlight

Julian Eisel noreply at git.blender.org
Sat Oct 15 02:08:59 CEST 2016


Commit: 325b21c1d58c23a92dba6f0fb7bcd2cae155cd90
Author: Julian Eisel
Date:   Sat Oct 15 02:07:48 2016 +0200
Branches: blender2.8
https://developer.blender.org/rB325b21c1d58c23a92dba6f0fb7bcd2cae155cd90

Outliner: Fix missing indentation for search-match highlight

Own mistake in ae8e84547005.

===================================================================

M	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 840339a..c2cd859 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);
 		}
 	}
 }




More information about the Bf-blender-cvs mailing list