[oe-commits] Peter Kjellerstedt : pybootchartgui: Use correct header height

git at git.openembedded.org git at git.openembedded.org
Wed Nov 20 11:09:39 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: f7d1f49aa46a46ecb881386f0399aa7da288d805
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f7d1f49aa46a46ecb881386f0399aa7da288d805

Author: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
Date:   Fri Nov 15 18:08:54 2013 +0100

pybootchartgui: Use correct header height

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/pybootchartgui/pybootchartgui/draw.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 9cbcbc1..b1ad6e6 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -278,7 +278,7 @@ def draw_chart(ctx, color, fill, chart_bounds, data, proc_tree, data_range):
 
 bar_h = 55
 meminfo_bar_h = 2 * bar_h
-header_h = 110 + 2 * (30 + bar_h) + 1 * (30 + meminfo_bar_h)
+header_h = 60
 # offsets
 off_x, off_y = 220, 10
 sec_w_base = 1 # the width of a second
@@ -389,7 +389,7 @@ def render_charts(ctx, options, clip, trace, curr_y, w, h, sec_w):
 	return curr_y
 
 def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w):
-        chart_rect = [off_x, curr_y+60, w, h - 2 * off_y - (curr_y+60) + proc_h]
+        chart_rect = [off_x, curr_y+header_h, w, h - 2 * off_y - (curr_y+header_h) + proc_h]
 
 	draw_legend_box (ctx, "Configure", \
 			 TASK_COLOR_CONFIGURE, off_x  , curr_y + 45, leg_s)
@@ -407,7 +407,7 @@ def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w):
 	draw_box_ticks(ctx, chart_rect, sec_w)
 	draw_sec_labels(ctx, chart_rect, sec_w, 30)
 
-	y = curr_y+60
+	y = curr_y+header_h
 
         offset = min(trace.start.keys())
         for s in sorted(trace.start.keys()):



More information about the Openembedded-commits mailing list