From 7248f777a01aee746975d0b3e1d4d34ce9f1e7d5 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:51:07 +0200 Subject: [PATCH] Set reasonable Progress color defaults --- gfx/progress.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gfx/progress.lua b/gfx/progress.lua index 4e955b6..5f57be2 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -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()