From 3ab4c97fae2d6731bb84b5277ff6a18f86f7d554 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:30:35 +0200 Subject: [PATCH] Define size for Progress --- itemcontroller.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 1da628b..0eb4cae 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -323,7 +323,9 @@ local PAGES = { local damageBar = nil if damage ~= nil and maxDamage ~= nil then damageBar = Progress:new{ - progress = (damage / maxDamage) + progress = (damage / maxDamage), + width = state.width - 2, + height = 1 } end