progressbar/graph: fix rounding and graph drawing

Signed-off-by: Lukas Hrazky <lukkash@email.cz>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Lukas Hrazky 2009-10-25 12:59:25 +01:00 committed by Julien Danjou
parent 735e612362
commit dea2a1f30f
2 changed files with 4 additions and 3 deletions

View File

@ -112,9 +112,10 @@ local function update(graph)
if value >= 0 then
value = value / max_value
img:draw_line(data[graph].width - border_width - i - 1,
border_width + ((data[graph].height - 2 * border_width) * (1 - value)),
border_width - 1 +
math.floor(((data[graph].height - 2 * border_width) * (1 - value)) + 0.5),
data[graph].width - border_width - i - 1,
border_width,
border_width - 1,
data[graph].background_color or "#000000aa")
end
end

View File

@ -98,7 +98,7 @@ local function update(pbar)
rel_height,
true, data[pbar].background_color or "#000000aa")
else
local rel_x = math.floor(over_drawn_width * data[pbar].value)
local rel_x = math.floor((over_drawn_width * data[pbar].value) + 0.5)
img:draw_rectangle(border_width + rel_x,
border_width,
over_drawn_width - rel_x,