From 685303e4e5d320539054800ab9d64f79b6ad8441 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:48:59 +0200 Subject: [PATCH] Use bgColor instead of fgColor --- gfx/progress.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/progress.lua b/gfx/progress.lua index 4653fc4..4e955b6 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -31,11 +31,11 @@ function Progress:new(o) end function Progress:setFgColor(color) - self.active:setFgColor(color) + self.active:setBgColor(color) end function Progress:setBgColor(color) - self.inactive:setFgColor(color) + self.inactive:setBgColor(color) end function Progress:_updateProgress()