progressbar: remove minimum size limit

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 21:15:54 +01:00 committed by Julien Danjou
parent 5f38aadc25
commit 8eece559b9
1 changed files with 4 additions and 12 deletions

View File

@ -57,8 +57,6 @@ local function update(pbar)
local width = data[pbar].width or 100 local width = data[pbar].width or 100
local height = data[pbar].height or 20 local height = data[pbar].height or 20
if data[pbar].width < 5 or data[pbar].height < 2 then return end
-- Create new empty image -- Create new empty image
local img = capi.image.argb32(width, height, nil) local img = capi.image.argb32(width, height, nil)
@ -124,10 +122,8 @@ end
-- @param progressbar The progressbar. -- @param progressbar The progressbar.
-- @param height The height to set. -- @param height The height to set.
function set_height(progressbar, height) function set_height(progressbar, height)
if height >= 5 then data[progressbar].height = height
data[progressbar].height = height update(progressbar)
update(progressbar)
end
return progressbar return progressbar
end end
@ -135,10 +131,8 @@ end
-- @param progressbar The progressbar. -- @param progressbar The progressbar.
-- @param width The width to set. -- @param width The width to set.
function set_width(progressbar, width) function set_width(progressbar, width)
if width >= 5 then data[progressbar].width = width
data[progressbar].width = width update(progressbar)
update(progressbar)
end
return progressbar return progressbar
end end
@ -162,8 +156,6 @@ function new(args)
local width = args.width or 100 local width = args.width or 100
local height = args.height or 20 local height = args.height or 20
if width < 5 or height < 5 then return end
args.type = "imagebox" args.type = "imagebox"
local pbar = {} local pbar = {}