summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui/pybootchartgui/draw.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui/pybootchartgui/draw.py')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 2b5907be19..925002d6e8 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -256,7 +256,7 @@ def draw_chart(ctx, color, fill, chart_bounds, data, proc_tree, data_range):
256 # avoid divide by zero 256 # avoid divide by zero
257 if max_y == 0: 257 if max_y == 0:
258 max_y = 1.0 258 max_y = 1.0
259 xscale = float (chart_bounds[2]) / max_x 259 xscale = float (chart_bounds[2]) / (max_x - x_shift)
260 # If data_range is given, scale the chart so that the value range in 260 # If data_range is given, scale the chart so that the value range in
261 # data_range matches the chart bounds exactly. 261 # data_range matches the chart bounds exactly.
262 # Otherwise, scale so that the actual data matches the chart bounds. 262 # Otherwise, scale so that the actual data matches the chart bounds.