summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 2aa348ba70..ea960f9a07 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -451,6 +451,8 @@ def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w):
451 col = TASK_COLOR_PACKAGE 451 col = TASK_COLOR_PACKAGE
452 elif task == "do_populate_sysroot": 452 elif task == "do_populate_sysroot":
453 col = TASK_COLOR_SYSROOT 453 col = TASK_COLOR_SYSROOT
454 else:
455 col = WHITE
454 456
455 if col: 457 if col:
456 draw_fill_rect(ctx, col, (x, y, w, proc_h)) 458 draw_fill_rect(ctx, col, (x, y, w, proc_h))