From 43bfca07c6efa1328c1dbc491ddca0a817efcdf8 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 05:40:44 +0200 Subject: [PATCH] Pad progress bar --- itemcontroller.lua | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 01e7902..c3fb507 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -373,11 +373,15 @@ local PAGES = { local maxDamage = group:getMaxDamage() local damageBar = nil if damage ~= nil and maxDamage ~= nil then - damageBar = Progress:new{ - progress = (damage == 0 and maxDamage or damage / maxDamage), - width = state.width - 2, - height = 1, - fgColor = colors.green + damageBar = Padding:new{ + left = 1, + right = 1, + element = Progress:new{ + progress = (damage == 0 and maxDamage or damage / maxDamage), + width = state.width - 2, + height = 1, + fgColor = colors.green + } } end