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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-11 13:28:05 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-11 15:20:25 +0300
commit45477efd0e25293be8721bf949409b44f7ce0cc8 (patch)
tree2a9e5d927b316b59edeb197e66050745f67101ea /source/blender/editors/space_outliner
parentd90eb356622931988f4b97c50d42c427f5868f20 (diff)
UI: increase spacing between icon and text.
To avoid the icon and text blending together too much, which happens with the new monochrome and slightly bigger icons.
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 5cbe39773c1..1c45dc24108 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1696,7 +1696,7 @@ static void outliner_draw_tree_element(
if (!(ELEM(tselem->type, TSE_RNA_PROPERTY, TSE_RNA_ARRAY_ELEM, TSE_ID_BASE))) {
tselem_draw_icon(block, xmax, (float)startx + offsx, (float)*starty, tselem, te, alpha_fac, true);
- offsx += UI_UNIT_X + 2 * ufac;
+ offsx += UI_UNIT_X + 4 * ufac;
}
else
offsx += 2 * ufac;
@@ -1717,13 +1717,13 @@ static void outliner_draw_tree_element(
(float)startx + offsx + 2 * ufac, (float)*starty + 2 * ufac, ICON_LIBRARY_DATA_DIRECT,
alpha_fac);
}
- offsx += UI_UNIT_X + 2 * ufac;
+ offsx += UI_UNIT_X + 4 * ufac;
}
else if (ELEM(tselem->type, 0, TSE_LAYER_COLLECTION) && ID_IS_STATIC_OVERRIDE(tselem->id)) {
UI_icon_draw_alpha(
(float)startx + offsx + 2 * ufac, (float)*starty + 2 * ufac, ICON_LIBRARY_DATA_OVERRIDE,
alpha_fac);
- offsx += UI_UNIT_X + 2 * ufac;
+ offsx += UI_UNIT_X + 4 * ufac;
}
GPU_blend(false);