From 4acde58d5cb4382a9dc4da0374853f5bf8a607b0 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 00:17:03 +0200 Subject: [PATCH] Fix resize call for horizontal inactive field --- gfx/progress.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/progress.lua b/gfx/progress.lua index 1a3baff..1be6527 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -59,7 +59,7 @@ function Progress:_updateProgress() width = round(self:getProgress() * width), height = height } - self.active:resize{ + self.inactive:resize{ width = round((1 - self:getProgress()) * width, true), height = height }