Pad progress bar
This commit is contained in:
parent
4ee78dd7c2
commit
43bfca07c6
@ -373,11 +373,15 @@ local PAGES = {
|
|||||||
local maxDamage = group:getMaxDamage()
|
local maxDamage = group:getMaxDamage()
|
||||||
local damageBar = nil
|
local damageBar = nil
|
||||||
if damage ~= nil and maxDamage ~= nil then
|
if damage ~= nil and maxDamage ~= nil then
|
||||||
damageBar = Progress:new{
|
damageBar = Padding:new{
|
||||||
progress = (damage == 0 and maxDamage or damage / maxDamage),
|
left = 1,
|
||||||
width = state.width - 2,
|
right = 1,
|
||||||
height = 1,
|
element = Progress:new{
|
||||||
fgColor = colors.green
|
progress = (damage == 0 and maxDamage or damage / maxDamage),
|
||||||
|
width = state.width - 2,
|
||||||
|
height = 1,
|
||||||
|
fgColor = colors.green
|
||||||
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user