Use bgColor instead of fgColor

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:48:59 +02:00
parent 0a8209d3fe
commit 685303e4e5

View File

@ -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()