diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2014-01-21 16:22:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-22 07:26:29 +0000 |
commit | 1ca2e1a2ae3dc4d1e62a9daf25df588ec27a195a (patch) | |
tree | 49e7259421754a72a10c5d804213b6eff5a44ef9 /scripts | |
parent | 8245ceab3acd02618f24665ff5dc203c1e5cce1d (diff) | |
download | openembedded-core-1ca2e1a2ae3dc4d1e62a9daf25df588ec27a195a.tar.gz openembedded-core-1ca2e1a2ae3dc4d1e62a9daf25df588ec27a195a.tar.bz2 openembedded-core-1ca2e1a2ae3dc4d1e62a9daf25df588ec27a195a.zip |
pybootchartgui: Correct the legend
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/pybootchartgui/pybootchartgui/draw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 299cced741..4a2ffd79e1 100644 --- a/scripts/pybootchartgui/pybootchartgui/draw.py +++ b/scripts/pybootchartgui/pybootchartgui/draw.py @@ -420,7 +420,7 @@ def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w): draw_legend_box (ctx, "Install", \ TASK_COLOR_INSTALL, off_x+240, curr_y + 45, leg_s) draw_legend_box (ctx, "Populate Sysroot", \ - TASK_COLOR_SYSROOT, off_x+480, curr_y + 45, leg_s) + TASK_COLOR_SYSROOT, off_x+360, curr_y + 45, leg_s) draw_legend_box (ctx, "Package", \ TASK_COLOR_PACKAGE, off_x+480, curr_y + 45, leg_s) draw_legend_box (ctx, "Package Write", |