Set reasonable Progress color defaults

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:51:07 +02:00
parent 685303e4e5
commit 7248f777a0

View File

@ -23,7 +23,11 @@ local Progress = Prop.attach(Element:new{
}, Orientation, Orientation.VERTICAL)
function Progress:new(o)
local obj = Element.new(self, o or {})
local template = o or {}
template.fgColor = template.fgColor or colors.red
template.bgColor = template.bgColor or colors.gray
local obj = Element.new(self, template)
obj.active = BlankElement:new()
obj.inactive = BlankElement:new()
obj:_refreshColors()