Set reasonable Progress color defaults
This commit is contained in:
parent
685303e4e5
commit
7248f777a0
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user