From 658b69dbf8a25bc639e1b8e317fef0ea8ba9e2d7 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 23:18:19 +0200 Subject: [PATCH] Fix orientation prop in Progress --- gfx/progress.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gfx/progress.lua b/gfx/progress.lua index 8040eac..d138680 100644 --- a/gfx/progress.lua +++ b/gfx/progress.lua @@ -1,4 +1,5 @@ local Element = require("gfx.element") +local Prop = require("gfx.prop") local Orientation = require("gfx.prop.orientation") local BlankElement = Element:new() @@ -15,11 +16,11 @@ local function round(value, biasDown) return (((not biasDown) and decimal < 0.5) or ((not not biasDown) and decimal <= 0.5)) and math.floor(value) or math.ceil(value) end -local Progress = Orientation.with(Element:new{ +local Progress = Prop.attach(Element:new{ progress = 0.0, active = nil, inactive = nil -}) +}, Orientation, Orientation.VERTICAL) function Progress:new(o) local obj = o or {}