From: Jose Quaresma Date: Mon, 10 Jul 2023 22:24:18 +0000 (+0000) Subject: pybootchartgui: concatenate the elapsed time with the process X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~381 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b369e9bb0136fecc65f49e0965e5506aa50f489e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git pybootchartgui: concatenate the elapsed time with the process The function draw_label_in_box have logic to chose the rigth side to call the draw_text, so use it instaed of forcing the cordinates of the right side. Signed-off-by: Jose Quaresma Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index ddfa9a61922..10f6783d38c 100644 --- a/scripts/pybootchartgui/pybootchartgui/draw.py +++ b/scripts/pybootchartgui/pybootchartgui/draw.py @@ -682,10 +682,9 @@ def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w): draw_fill_rect(ctx, col, (x, y, w, proc_h)) draw_rect(ctx, PROC_BORDER_COLOR, (x, y, w, proc_h)) - draw_label_in_box(ctx, PROC_TEXT_COLOR, process, x, y + proc_h - 4, w, proc_h) - # Show elapsed time for each task - draw_text(ctx, elapsed_time, PROC_TEXT_COLOR, x + w + 4, y + proc_h - 4) + process = "%ds %s" % (elapsed_time, process) + draw_label_in_box(ctx, PROC_TEXT_COLOR, process, x, y + proc_h - 4, w, proc_h) y = y + proc_h